Question

This is the error that I am getting (I use a ajax toolkitextender):

enter image description here

I tried to solve this error with this thread: ASP.NET Ajax client-side framework failed to load. when put the ScriptManager on a blank page

But nothing worked..

Can someone please help me, can't use any ajax toolkit extender...

On my other website application it all works, but in this new one everyhing goes weird....

Was it helpful?

Solution

Found the answer.

Because I am using URL rewrite in the Global.asax file, I need to add this to the application_start:

protected void Application_Start(object sender, EventArgs e)
{
    RouteTable.Routes.Ignore("{resource}.axd/{*pathInfo}");
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top