문제

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