runat="server"

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

hey

asp.net 2.0

If I have a plain html table in my asp.net 2.0 webpage, and later decide to
add this property: runat="server" to the table. Does this turn the table
into a asp.net table (<asp:Table ID="Table1" runat="server">)???

Jeff
 
Jeff said:
hey

asp.net 2.0

If I have a plain html table in my asp.net 2.0 webpage, and later decide to
add this property: runat="server" to the table. Does this turn the table
into a asp.net table (<asp:Table ID="Table1" runat="server">)???

Jeff
It makes it an htmlgenericcontrol not an asp:table control.
 
No, but it does allow you to access the members of this HTML Table via
server side code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top