Hi,
I have a simple page which contains a asp.net button. I have a javascript fuction which show radalert window after click on this button.
<asp:Button ID="Button1" runat="server" OnClientClick="return ShowTestAlert();" Text="Submit" />
JavaScript Code:
function ShowTestAlert()
{
radalert("This is a test message",300,100,'Alert');
return false;
}
Now click on the button, radalert will show, close/cancel alert, click again and close/cancel alert, do it several times.
After some times, application hang-up. Can click on button/cant cancel alert window.
whats the reason behind this? Is there any solution for this? My real application also have same problem.
Thanks in advance
Mamun
I have a simple page which contains a asp.net button. I have a javascript fuction which show radalert window after click on this button.
<asp:Button ID="Button1" runat="server" OnClientClick="return ShowTestAlert();" Text="Submit" />
JavaScript Code:
function ShowTestAlert()
{
radalert("This is a test message",300,100,'Alert');
return false;
}
Now click on the button, radalert will show, close/cancel alert, click again and close/cancel alert, do it several times.
After some times, application hang-up. Can click on button/cant cancel alert window.
whats the reason behind this? Is there any solution for this? My real application also have same problem.
Thanks in advance
Mamun