asp.net - Hide the html contorl from the server side without using attributes runat="Server" -


I am using HTML control, and want visible wrong from the server side, which is runat = "server" P>

Let me know a solution

Runt = "server" has nothing to do with visibility.

If you want to hide control (so that you do not see any visitors on your site), you can change your code to visibility: hide; or Display: None; I think this is what you wanted to know.


Comments