What about creating an IFRAME body and set there the onLoad event?
Or, everytime you want to go RTE, post (form) something to be picked up by header.asp, then in header.asp, dynamically create the body tag accordingly, observe:
<%
If Request.Form("GoingRTE") = "YesPlease" Then
'/* Write here the body with onLoad */
Response.Write("<BODY ...>")
Else
'/* Write here the body for all non RTE pages */
Response.Write("<BODY ...>")
End If
%> |
You just have to make sure you are posting (YesPlease) when you want to go RTE.
This is just theory, no tests were made and no animals were injured.