Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 .net 2008 中有 asp.net 项目。对于每个 aspx 页面都包含 ajax 控件 UpdateProgress 但有错误(创建控件时出错)虽然 ajax 库在我的项目中,但库版本是 1.0
它不喜欢引用的那个控件,可能是因为它没有任何明确的设计时支持。如果这是您的控制,您可以执行以下操作:
if (this.DesignMode == true) { //Initialize some things so there aren't errors }
不过,它在运行时应该不是问题。