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.

link|improve this question

75% accept rate
Where is your login control? – Jack Marchetti Mar 24 '11 at 19:31
On the same master page. – GoG Mar 24 '11 at 19:31
Is your Login control inside a LoginView? – Mike C. Mar 24 '11 at 19:39
feedback

3 Answers

up vote 0 down vote accepted

If the code mentioned above is in the master page, then try removing the Master portion of the code...

for example

login = this.FindControl("login") as Login;

The reason why this would work is because the current master page, is not embedded within another Master page. Therefore, you'll get an "object not set" error when trying to access the master's Master page (i.e. this.Master.FindControl())

Just wondering, if this is the case, is there a reason why you can't access the control by its name?

link|improve this answer
Thank you very much, that solved my problem. And for your question - yes that was odd to me too, I couldn't access the control only by it's ID, so I searched for an answer in a book for .net and found out that the controls are accessible in this way in the master pages... – GoG Mar 24 '11 at 19:40
feedback

If I read your question correctly, you have a master page and you are trying to use FindControl to find a control named login on that page. If so, then you should be doing this:

login = this.FindControl("login") as Login; 

because this:

login = this.Master.FindControl("login") as Login; 

would be looking for the control in the master page that your current master page is nested in.

In other words, that last line of code would work if you had a nested master page - for Example Site.Master, and also had a nested child MasterPage named Section.Master IF the login control was in the Site.Master and the code snippet were in the Section.Master.

(Hopefully that made sense.)

link|improve this answer
Thank you. Things are now clear to me. – GoG Mar 24 '11 at 19:44
feedback

You should be able to reference the login control directly by the ID element.

In markup:

<asp:Login runat="server" ID="MainLogin" ....... />

In code-behind:

MainLogin.Visible = false;
link|improve this answer
Would you not want to use Page.Master.FindControl?? – CrazyCoderz Mar 24 '11 at 19:37
Why would you want to? Am I missing something here? – Mike C. Mar 24 '11 at 19:38
The controls can't be accessed only by their IDs in the Master page code behind class, so that's why I'm using the Page.FindControl("") – GoG Mar 24 '11 at 19:51
@Gog - Is your Login control inside a LoginView? – Mike C. Mar 24 '11 at 19:55
No, it is not... Look the answer of David Stratton above - everything is well described why I couldn't access the control and why the exception was thrown – GoG Mar 24 '11 at 19:58
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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