Masterpage Body onload ? Setting from contentpage?

  • Thread starter Thread starter jobs
  • Start date Start date
J

jobs

Hello.

How can a set the Body onload from a content page since Body is on the
masterpage?

on my master page:

<body runat="server" id="Body" >

How can I reference Body. on the content page's codebehind?

Thanks for any help or information.
 
How can a set the Body onload from a content page since Body is on the
masterpage?

on my master page:

<body runat="server" id="Body" >

How can I reference Body. on the content page's codebehind?

((HtmlGenericControl)Master.FindControl("Body")).Attributes["onload"] =
<whatever>;
 
jobs said:
Hello.

How can a set the Body onload from a content page since Body is on the
masterpage?

on my master page:

<body runat="server" id="Body" >

How can I reference Body. on the content page's codebehind?

Thanks for any help or information.

((ClassOfYourMasterPage)Master).Body
 
Back
Top