1

I have a asp.net web page with radgrid and radajaxmanager are used in it.

It works as expected on all browsers other than IE11

When I click on button I got this error on my Console.

Unable to get property 'PageRequestManager' of undefined or null reference

Any thoughts would be highly appreciated.

2 Answers2

4

http://blogs.telerik.com/aspnet-ajax/posts/13-12-19/how-to-get-your-asp.net-application-working-in-ie11 this should solve your problem. It's a .NET 4 issue.

rdmptn
  • 5,413
  • 1
  • 16
  • 29
1

You can also check out this answer for more details or a post by Scott Hanselman detailing the problem. Core of the problem is outdated browser detection files on the server such that IE11 is an unknown browser (and therefore lacking Javascript support according to the server).

Community
  • 1
  • 1
Ronald Wildenberg
  • 31,634
  • 14
  • 90
  • 133