Ajax client-side framework failed to load Asp.Net 4.0

后端 未结 13 1558
轮回少年
轮回少年 2020-12-08 07:56

I got a complicated problem with ASP.Net 4.0 Ajax....I started a website with Visual Studio 2010 on my machine,and added some update panels they used to work fine,but sudden

13条回答
  •  时光取名叫无心
    2020-12-08 08:12

    This is a common error that happens when you try to call framework javascript function before page have even loaded them.

    So ether run your code when dom is ready (eg pageload), ether place your code after the scriptmanager tag, or check to place it after the javascript load from scriptmanager.

提交回复
热议问题