SCRIPT5022: Sys.WebForms.PageRequestManagerServerE

2019-02-22 09:13发布

On IE10, when I click the login button I see the following error in the console: SCRIPT5022: Sys.WebForms.PageRequestManagerServerErrorException: Input string was not in a correct format. ScriptResource.axd, line 939 character 13

I added some server-side logging, but the page is never sent, so it seems a client side issue.

This behavior does not occur in IE8, Firefox OR chrome, there it works fine.

3条回答
等我变得足够好
2楼-- · 2019-02-22 10:02

I have undergone the same problem, My Configurations settings are as follows,

Application running on framework 3.5,

IIS application pool framework version v2.0,

Internet Explorer 10..

Please Set the IE in compatibility View then all errors gone away for me. If still someone searching for the same problem please you could give it a try by setting the IE in compatibility mode for that website....

查看更多
Lonely孤独者°
3楼-- · 2019-02-22 10:03

This is an issue with ie 10. Simply upgrade net framework to 4.5. This will solve your issue.. :)

查看更多
beautiful°
4楼-- · 2019-02-22 10:05

This is occurring because your submit button is an input with type="image". Therefore, coordinates are submitted with the form. Previous versions of Internet Explorer submit those coordinates as integers, but Internet Explorer 10 submits them as decimals.

There are a variety of ways to fix it. See this question and this bug report for some solutions.

查看更多
登录 后发表回答