SCRIPT5022: Sys.WebForms.PageRequestManagerServerErrorException: The input string was not in the correct format

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

I have added several protocols on the server side, but the page is never sent, so there is a problem with the client side.

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

+6
source share
3 answers

This is because your submit button is input with type="image" . Therefore, the coordinates are transmitted with the form. Previous versions of Internet Explorer represent these coordinates as integers, but Internet Explorer 10 presents them as decimal numbers.

There are many ways to fix this. See this question and this bug report for some solutions.

+10
source

This is a problem with that is 10. Just upgrade the network structure to 4.5. This will solve your problem .. :)

0
source

I had the same problem, My Configurations settings are as follows,

Running the application on framework 3.5,

IIS application pool framework version 2.0,

Internet Explorer 10 ..

Please install IE in compatibility. Then all the errors disappeared for me. If someone is looking for the same problem, please you can try installing IE in compatibility mode for this website ....

0
source

All Articles