tags:

views:

63

answers:

1

How to create HTML fieldset and legend in asp.net code behind? and add controls in that fieldset?

+1  A: 

Try this:

<asp:Panel ID="myPanel" runat="server" GroupingText="My Fieldset Title" />

Check this as well

Floyd Pink