WebControl Span or Div tag

  • Thread starter Thread starter Jim M
  • Start date Start date
J

Jim M

I can render most all html tags by creating webcontrols in code behind.

Is there a span or div web control?

Thanks in advance.
 
Jim said:
I can render most all html tags by creating webcontrols in code
behind.
Is there a span or div web control?

Panel renders as <div />, but you always use HTML controls:

<div id="foo" runat="server">
....
</div>

Cheers,
 
Back
Top