|
Rank: Member Groups: Member
Joined: 9/24/2010 Posts: 9
|
Error: uncaught exception: [Exception... "Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open]" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: http://www.mydomain.com/eo_web.ashx?id=e005a8de-c5c4-49c6-887d-331cca4a2141 :: anonymous :: line 6" data: no] This error comes up in error console. Works fine in DEV, but after I published to server... I get this error.
|
|
Rank: Member Groups: Member
Joined: 9/24/2010 Posts: 9
|
Can anyone point me in the right direction?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, The form element in your page is rendered without an "action" value:
Code: HTML/ASPX
<form method="post" action="" id="form1">
....
</form>
"action" should be pointing to the post back Url. The CallbackPanel uses this value to decide where to send the AJAX request. That's why it fails. Thanks!
|
|
Rank: Member Groups: Member
Joined: 9/24/2010 Posts: 9
|
Update, Everything works in IE. Just not Firefox.
|
|
Rank: Member Groups: Member
Joined: 9/24/2010 Posts: 9
|
OK, are you talking about the <form> tag in my masterpage? if so..... Im confused. Also, why does it work in IE, and all browsers in DEV?
Actually I dont care why... How do I fix this? If your previous answer explained that.. Please go a little more detail.
sorry (newb)
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You need to care. The problem is in your code. We looked into your page and discovered a problem. So we told you what that problem is and it makes perfect sense to us why that problem can make the CallbackPanel to stop function. When a problem is in your code, the most we can do is to point you to where the problem is, you will need to actually analyze and fix it.
Thanks
|
|
Rank: Member Groups: Member
Joined: 9/24/2010 Posts: 9
|
~issue resolved~
|
|