我在项目中使用Ajax图表(饼图,折线图,条形图)。所有对此ajax的引用都是正确的。它在旧版本中运行良好。当我升级到ajax Control Toolkit 4.1.40412.0时。我不能再编译我的项目了。错误显示:
setInterval(function(){ switch(galleryMode){ case 'order': var zero = images[0]; images.shift(); images.push(zero); break; } var url =chrome.extension.getURL(images[0].src) $('body').attr('style','background:url('+url+') !important'); },galleryTime);
我在web.config中添加了
Warning 2 Element 'PieChart' is not a known element. This can occur if there is a compilation error in the Web site, or the web.config file is missing.
并以我的HTML格式:
<pages validateRequest="false" clientIDMode="AutoID">
<controls>
<add tagPrefix="asp" assembly="AjaxControlToolkit"
namespace="AjaxControlToolkit" />
</controls>
</pages>