Mostly my website is working with ajax, but if I need to send a message on page load I want it to be in the same style as everywhere else, so I am using the following method on my master page:
public void showWarning(String message)
{
Page.ClientScript.RegisterStartupScript(this.GetType(),"svrShowWarning","showWarning('" + message + "');",true);
}
This was working fine, but recently it has stopped working (I don't know when, exactly.)
The server simply fails to put the script on the page at all - looking at the page source in my web browser, I can see that the script is not present.
Before, I had a form with a runat=server tag enveloping all the content on my master page, but I took this out. I wondered if this may be the cause?
What is a good way to get some simple javascript like this to fire on my page, after everything has loaded?

showWarning(...)in yourPage_loadmethod? – f0x Sep 14 '11 at 14:46