J Jim M Sep 11, 2004 #1 I can render most all html tags by creating webcontrols in code behind. Is there a span or div web control? Thanks in advance.
I can render most all html tags by creating webcontrols in code behind. Is there a span or div web control? Thanks in advance.
J Joerg Jooss Sep 11, 2004 #2 Jim said: I can render most all html tags by creating webcontrols in code behind. Is there a span or div web control? Click to expand... Panel renders as <div />, but you always use HTML controls: <div id="foo" runat="server"> .... </div> Cheers,
Jim said: I can render most all html tags by creating webcontrols in code behind. Is there a span or div web control? Click to expand... Panel renders as <div />, but you always use HTML controls: <div id="foo" runat="server"> .... </div> Cheers,