I am trying to find the label control from aspx page.
Label labelmessageupdate;
labelmessageupdate = (System.Web.UI.WebControls.Label )FindControl("updateMessage1");
if i set labelmessageupdate.Text ="something"
it returns object reference exception.
and the label control is within the update panel could that be the problem.
Just check for null. Always check null condition so that it doesn't end up showing Object Reference error.