I'm trying to run a client-side script from the server-side on Page_Load, I found this code from here. It's server side code:
protected void Page_Load(object sender, EventArgs e)
{
if (!ClientScript.IsStartupScriptRegistered("alert"))
{
Page.ClientScript.RegisterStartupScript(this.GetType(),
"alert", "alertMe();", true);
}
}
And it's client side code:
<script type="text/javascript">
function alertMe() {
alert('Hello');
}
</script>
But nothing happens on Page_Load.
UPDATE: source code coderun.