Click here to Skip to main content
15,889,852 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi all codegurus.

I get an error during the process of loading a page. It's error of unresponsive java script error.
"A script on this page may be busy, or it has stopped responding. You can stop the script now or you can continue to see if the script is complete."

So I found this error only in mozila, not in chrome and ie.
So what should I do?
I don't use any type of javascript in my coding.
Still I found this error.

Thanks!
ketan
Posted
Updated 31-Jul-13 19:51pm
v2

See this

http://support.mozilla.org/en-US/questions/946513[^]

Seems to be a browser issue.

Hope it helps
 
Share this answer
 
v2
XML
hey,thanks for your reply,
now i solve this problem myself.whenever you got this type of error then please check your controls which you used in your code.

i use async file upload control.which increase loading time for java script.so i simply remove it and put simple file upload control as per below.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:PostBackTrigger ControlID="btnUpload" />
</Triggers>
<ContentTemplate>
<ajaxtoolkit:asyncfileupload runat="server" id="AsyncFileUpload1" width="300px" UploaderStyle="Traditional"
uploadingbackcolor="#fff" clientidmode="AutoID"></ajaxtoolkit:asyncfileupload>
<br>
</br>
<asp:button runat="server" id="btnUpload" cssclass="btn btn-blue" onclick="btnUpload_Click"
text="Opslaan" />
<br>
</br>
</ContentTemplate>
</asp:UpdatePanel>

so now i get solution for my problem

Thanks!
ketan
 
Share this answer
 
hi,
thanks for your reply

i try this but i can't get solution.give me proper solution please.

Thanks!
ketan
 
Share this answer
 
hie,

i try to find error with firebug and i got it.
but now my problem is that i found error in html file in mozila.(e.g. i make a .aspx file in visual studio 2010 than run in browser and in browser's html file)
so is that possible to edit it
and is that possible to solve this kind of error
if yes then give me possible solution.
it's urgent.

Thanks !
ketan
 
Share this answer
 
hie,
i solve it myself with use of this link that is so helpful for me and i solve my problem with myself.


[^]

https://support.mozilla.org/en-US/questions/945034[^]

THanks for your reply

Regards
ketan
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900