无法让我的自定义控件出现在智能感知中
我已将程序集和命名空间添加到项目中,但无法让智能感知在 ASP.NET 标记中显示我的标记名称。 我缺少什么?
我有一个项目是 MyWebSite.Web。
在我的 web.config 中,我有:
<controls>
...
<add tagPrefix="MyTagName" namespace="Enhancements.Controls" assembly="Enhancements" />
</controls>
我有一个名为“Enhancements”的项目,在该项目中我有一个名为“Enhancements.Controls”的类文件。
当我进入我的网络项目时,我的控件上没有智能感知。
就原因或追踪此问题的方法而言,有什么特别需要寻找的吗?
谢谢
I have added my assembly and namespace to my project, but I cannot get intellisense to show my tag name in the ASP.NET markup. What am I missing?
I have a project that is MyWebSite.Web.
In my web.config I have:
<controls>
...
<add tagPrefix="MyTagName" namespace="Enhancements.Controls" assembly="Enhancements" />
</controls>
I have a project called Enhancements, and inside that project I have a class file with the namespace Enhancements.Controls.
When I go to my web project, I get no intellisense on my controls.
Is there anything in particular to look for as far as why or ways to track this down?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web 项目是否有对增强项目的引用? 我在 web.config 中使用相同的语法没有问题。
Does the web project have a reference to the Enhancements project? I use the same syntax in my web.config without issue.