I'm working on ASP.NET app and in the master page C# code I want to access the login control, so I have the following code:
Login login = new Login();
login = this.Master.FindControl("login") as Login;
But, I get exception " Object reference not set to an instance of an object" when this line
login = this.Master.FindControl("login") as Login;
is executed.
I can't see what can be wrong...
Thanks.