I have a filedset and legend inside that with "some text" and inside this fieldset i have a GRID
I have 2 questions
How to show ? hide html filedset from code behind, i tried the following way to show and hide the field set
a) set runat="server"--but it didnt work b) i pasted the fieldset inside an asp.net panel and tried to show/hide the panel, it also didnt work
Note :I am using "Rad Ajax Manager" and Rad Ajax LoadingPanel
<asp:Panel ID="Panel1" runat="server" >
<fieldlset>
<legend><asp:Label id="Label1" runat="server" /></legend>
</fieldset>
</asp:Panel>
How to show /hide html filedset from code behind ?
Panel1.Visible = true; // or false
How to set text for legend from code behind , ie I want to set "some text" + Value_Form_Code Behind AS legend text ?
Label1.Text = String.Format("some text {0}",Value_Form_Code);