Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a script that runs and tries to input a value in a label but when ever I run it I get the following error even though the label is there and the id is correct.

Object reference not set to an instance of an object. ­

Code:

string answerLbl = "q" + reader["QuestionId"].ToString() 
                 + "_" + reader["AnswerId"].ToString();                       
Label lbl = (Label)this.FindControl(answerLbl);
lbl.Text = "label text";
share|improve this question
7  
please post your code. thanks – allentranks Jul 26 '12 at 12:47
What is this in the context of your code? If it's not an ancestor of the control you're trying to find, it won't find it. See how FindControl is used in the MSDN example: msdn.microsoft.com/en-us/library/… – Alain Jul 26 '12 at 12:52
1  
Jesus guys, you didn't even give him 4 minutes to clean up his question before closing it. – Alain Jul 26 '12 at 12:53
try this if(!string.IsNullOrEmpty(myData)) myLabel.Text = myData; – JohnnBlade Jul 26 '12 at 12:53
Welcome to StackOverflow: if you post code, XML or data samples, please highlight those lines in the text editor and click on the "code samples" button ( { } ) on the editor toolbar to nicely format and syntax highlight it! – marc_s Jul 26 '12 at 12:54
show 3 more comments

closed as too localized by casperOne Jul 26 '12 at 14:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Create the Label using the default.aspx "Design" page... then use that id (originally labeled "Label1")

Label1.text = "Blaaaaaaaah";

Also this should be inside an event which reloads the page, You can put the label inside an UpdatePanel so it is the only thing which updates on the page.

share|improve this answer

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