<body id="MasterPageBody" runat="server" > </body>
Code behind
public HtmlGenericControl Body { get{ return this.MasterPageBody} set{ this.MasterPageBody = value;} }
Content pageRegister
<%@ MasterPage VirtualPath="~/virtual/path/to/your/master/page" %>
Code Behind
public void Page_Load(object sender, EventArgs e) { this.MasterPageBody.Attributes .Add("onload","javascript:alert('I am here')"); }
No comments:
Post a Comment