Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

asp.net

vb.net

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

like image 924
James123 Avatar asked Sep 07 '10 03:09

James123


1 Answers

Try this:

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

Check this as well

like image 101
Hari Pachuveetil Avatar answered Oct 24 '22 13:10

Hari Pachuveetil