无法在 Razor 视图 vbhtml 文件中使用 Microsoft.Web.Helpers
我想使用 Microsoft.Web.Helpers dll 中的 Linkshare 帮助程序。我添加了对我的项目的引用,但如果尝试在 vbhtml 文件中使用它,Visual studio 会用蓝色波浪线强调它,并告诉我它无法访问等等。我什至添加了对这些 webmatrix dll 的引用,如下所述: http://hadsy.net/2011/01/19/ASPNETMVC3MicrosoftWebHelpersErrorTheTypeOrNamespaceNameSimpleMembershipProviderCouldNotBeFound.aspx
如何让链接共享和其他帮助程序正常工作?
I want to use the Linkshare helper in the Microsoft.Web.Helpers dll. I added the reference to my project but if attempt to use it in the vbhtml file Visual studio underlines it with a blue squiggly and tells me it is inaccessible blah blah. I even added references to those webmatrix dlls as described here: http://hadsy.net/2011/01/19/ASPNETMVC3MicrosoftWebHelpersErrorTheTypeOrNamespaceNameSimpleMembershipProviderCouldNotBeFound.aspx
How can i get the linkshare and other helpers to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还需要在 web.config 中的命名空间下添加对程序集的引用,
即;
You also need to add a reference to the assembly in web.config, under Namespaces
i.e;
解决方案是在添加程序集引用后构建项目
然后我就可以使用链接共享助手
the solution is to build the project after adding the assembly reference
then I was able to use the linkshare helper