how to display none through code behind

Mishigen picture Mishigen · Dec 10, 2009 · Viewed 106.7k times · Source

I have tried this

login_div.Style("display") = "none";

But it's not working.how can I set the display of the div to none through code behind, in aspx I have a div:

<div id="login_div" runat="server">

Answer

Mark Sherretta picture Mark Sherretta · Dec 10, 2009

I believe this should work:

login_div.Attributes.Add("style","display:none");