RegisterClientScriptBlock confusion?

I get the same problem when I try to run it from the page_load event of the aspx page, but when I run it from the body onload event it works. I think this is happening because the page_load event occurs before your window. Alert override has a chance to be run.

Up vote 0 down vote favorite share g+ share fb share tw.

My master web page contain JS code to override standard alerts with custom jQuery dialog boxes. In default. Aspx web page onLoad method I am trying to register and display alert script Page.ClientScript.

RegisterClientScriptBlock(this.GetType(), "InvalidPassword", "alert(\"Your login attempt was not successful. Please try again. \");", true); Unfortunately it does not work.

If I remove JS code which override alert box everything works fine, alert box appears. The override JS is correct, it is working fine if I execute alert js in client side, but it does not work if I try to execute code from server side. Could anyone explain where is the problem?

Asp.net jquery client-side registerclientscriptblock link|improve this question asked Sep 10 '10 at 12:30Tomas1,366417 65% accept rate.

I get the same problem when I try to run it from the page_load event of the aspx page, but when I run it from the body onload event it works. I think this is happening because the page_load event occurs before your window. Alert override has a chance to be run.

Try this in the body tag: And the jQuery: $(function () { window. Alert = function (message) { $('#dialog'). Text(message).dialog(); } }); I used the jQuery UI dialog plugin by the way.

Ok, I found where is the problem. If code registered with RegisterClientScriptBlock refer to another JS code then we need to load web page in full. It seems that JS registered in RegisterClientScriptBlock executed immediate when it is loaded in browser no matter if web page loaded in full or not.

So we need to execute code after web page loaded fully. We can use jQuery event below to find it $(document). Ready(function() { }); The full code will look like Page.ClientScript.

RegisterClientScriptBlock(this.GetType(), "InvalidPassword", "$(document). Ready(function() {alert(\"Your login attempt was not successful. Please try again.

\");})", true).

1 Good solution but that behavior is not specific to RegisterClientBlockScript -- javascript is always executed as soon as the browser sees it, in fact all browsers block all further rendering and resource requesting while processing a – Scott Stafford Sep 10 '10 at 13:06 RegisterStartupScript may help as well in such situation. Even it may be the easiest solution in async. Scenario.

For more details see: jakub-linhart.blogspot.com/2012/03/… – Jakub Linhart Mar 11 at 21:12.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions