Hi,
I have a button in master page with id "btnPage" with cssstyle "btnsmall" now when i load the contentpage say mycontentpage.aspx inherited from Masterpage.Master
I have to change the btnpage buttons cssstyle to "btnBig" how can i do this
Thanks in advance
Loading
Dorababu MekaPosted Jul 16, 2011, 4:44 AM
protected void Page_LoadComplete(object sender, EventArgs e)
{
button btn= this.Master.FindControl("btnPage");
btn.cssclass="YourrequiredStyle";
}
Jiteendra SampathiraoPosted Jul 16, 2011, 5:09 AM
if you are adding any masterpage to your web page..you shold define the css file link in master page like:
you can acces the styles from ur web page using CSSClass property......
hope it help you