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";
thisin 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 howFindControlis used in the MSDN example: msdn.microsoft.com/en-us/library/… – Alain Jul 26 '12 at 12:52{ }) on the editor toolbar to nicely format and syntax highlight it! – marc_s Jul 26 '12 at 12:54