This is my Technical area of troubleshooting and learning new Programming skills and many more. Here you will find answers for many new technologies like asp.net 2.0/3.5,4.0 C# access, mysql, Amazon Webservice ,Sql-server, JD Edwards, SAS, Salesforce, APIs, MVC and many more. please visit & discuss.
Saturday, July 5, 2008
How write on Masterpage Label C# asp.net
To Access Master page Label from aspx page you have to do this: Label lbl = (Label)this.Master.FindControl("Label1"); if (lbl !=null) { lbl.Text = "someText"; }
No comments:
Post a Comment