Posted by: Nishant Rana | July 8, 2009

Body OnLoad function in content page in ASP.NET

Hi,

I wanted to certain script to run in the onload of the body for my content page.

To do this we need to do the following

Add an id and runat attribute to the body tag in the MASTER page

<body id=”body” runat=”server”>

And in the Content page’s  page load handler

protected void Page_Load(object sender, EventArgs e)
{
HtmlGenericControl body = this.Master.FindControl(“body”) as HtmlGenericControl;
body.Attributes.Add(“onLoad”, “alert(‘Hello World’);”);
}

Bye…


Responses

  1. [...] the original here:  Body OnLoad function in content page in ASP.NET « Nishant Rana's … SHARETHIS.addEntry({ title: "Body OnLoad function in content page in ASP.NET « Nishant [...]


Leave a response

Your response:

Categories