How do I do it so that I can take a tag from the master page and put it in hidden by means of a .hide (), when a user logs in? To verify the logeo I use c #, something of this style:
if (usuario.nombre==Login.text){
ClientScript.RegisterStartupScript(this.GetType(), "myScript", "<script>$('#id_login').hide;</script>");
But this does not work for me because the #id_login is on the master page and it does not take it from here. What I want to do is hide where it says Start session once the session has been started correctly. And that tag is on the master page that contains the common "header" of all project .aspx