Is there another option for the that I can use in C#? I have a condition that needs to be met in order to display one of these Legends. As of now, I don't see how I can set this legend to invisible from the .cs side...unless there is also some .asp equivalent??? Any suggestions? Thank you!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could use the runat="server" attribute on it and provide it an id:

<fieldset>
    <legend runat="server" id="leg">Some Legend</legend>
    Some value
</fieldset>

and then in the code behind use the id to hide it:

protected void Page_Load(object sender, EventArgs e)
{
    leg.Visible = false;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.