Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a web page that has few text boxes, telerik:RadDateTimePicker, telerik radgrid and asp buttons(Search and Reset).

On click of Search button, an API will be called which takes input from the textbox on the UI and gives response in a class object. I convert that class object data to a datatable and bind that to the telerik radgrid.

This works fine in local environoment and on one of the live server. But on the new server in IE, page is not able to render data on button click and loader keeps moving on. There is no exception coming on server side. When I placed the "EndRequestHandler" function on aspx, I received the following error on javascript

C#
"Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12019"


Code on aspx
C#
           function EndRequestHandler(sender, args) {
               if (args.get_error() != undefined) {
                   args.set_errorHandled(true);
               }
           }



I tried a different page without update panel, in this case after sometime of button click IE says
C#
"PAGE CANNOT BE DISPLAYED"


It is running fine on Google Chrome

I tried every possible solution of google but nothing worked. Can anyone help??
Posted
Updated 1-May-14 3:12am
v3
Comments
Sanket Saxena 1-May-14 6:10am    
It seems like you are using Response.Write some where in your code?
tewarym@hcl.com 1-May-14 6:38am    
No Sanket, the same code is running on another server(in IE also) and on google chrome
Sanket Saxena 1-May-14 6:41am    
Buddy then it will some server configuration issue. Check the IIS Settings might be something missing over there.
tewarym@hcl.com 1-May-14 6:48am    
Let me make my question more clear..
In the page, there are 4 textboxes(UserName,UserId,IPAddress and CUSTOMER ID.
When I give input for either Username or user id or IPAddress, everything is fine but with CustomerId the issue comes.

In both cases, same API is called. In case of (UserName,UserId,IPAddress )same method is called but in case of customerId, a diiferent method of the API is called
and error is coming. IN BOTH CASES API IS SAME BUT FUNCTION IS DIFFERENT IN CASE OF CUSTOMER ID.

I know, this is something related to IE or IIS settings but not able to figure out.

Thanks
Code Help 2014 1-May-14 7:42am    
Which version of IE are you using?

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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