Body

  • Thread starter Thread starter Victor Rodriguez
  • Start date Start date
V

Victor Rodriguez

Is there a way to add from the server side of a page an
onunload="something()" to the Body tag of a page?

thanks,

Victor
 
put at runat=server and an id to to the body, then add the onunload
attribute in the code behind.

-- bruce (sqlwork.com)
 
Make the body tag runat=server, and tie it to an HtmlGeneric Control on the
back-end.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 
Back
Top