Intellisense 未在日历控件中显示 TargetControlID
我通过 NuGet 将 AjaxControlToolKit 添加到我的 Visual Studio 2010 中,并在我的 .aspx 页面中添加了引用。在日历控件中,智能感知不显示 TargetControlID 属性。 你能帮我吗? 谢谢 !
I added AjaxControlToolKit through NuGet to my Visual Studio 2010, added a reference in my .aspx page. In the calendar control, intellisense is not showing TargetControlID attribute.
Can you help me in this.
thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在项目中添加对 System.Web.Extensions 的引用。
我刚刚在 Visual Studio 2010 以及 2006 年和 2011 年 11 月发布的 AjaxControlToolKit 版本中遇到了这个问题。按照正常规则,我添加了对 AjaxControlToolKit 的引用,添加了适当的 using 语句,并且没有
.TargetControlID
字段。当我感到沮丧并把该属性放入(因为我在 Google 上找到的所有帖子都说它对他们有用!)并点击编译时,我收到一条抱怨,说我缺少对 System.Web.Extensions 的引用。添加它,就出现了我所有“缺失”的属性。Add a reference in your project to
System.Web.Extensions
.I just ran into this in Visual Studio 2010, with both the 2006 and the Nov 2011 AjaxControlToolKit releases. Following normal rules I added a reference to AjaxControlToolKit, added the appropriate using statement, and there was no
.TargetControlID
field. When I got frustrated and put the property in (since all posts I found on Google said it worked for them!) and hit compile I got a complaint that I was missing a reference toSystem.Web.Extensions
. Added it and up came all my "missing" attributes.