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....

有帮助吗?

解决方案

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}");
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top