Visual Web Developer 中缺少 System.Web.Routing
我已经安装了 Visual Web Developer 2008、.net Framework 3.5,但是当我尝试包含 System.Web.Routing 时,智能感知找不到它,如果我手动输入它,它会说它不存在..有什么建议吗?
I have installed Visual Web Developer 2008, the .net framework 3.5 but when i try to include System.Web.Routing intellisense can't find it and if i type it by hand it says it does not exist.. any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
System.Web.Routing.dll
程序集是 .NET 3.5 Service Pack 1 的一部分,因此如果您还没有安装它,则必须安装它(如果您安装了ASP.NET MVC 测试版)。 之后,您应该能够像添加任何其他 .NET 引用一样添加它。它显示在“添加引用”对话框的“.NET”选项卡上的 System.Web.RegularExpressions 和 System.Web.Services 之间。
The
System.Web.Routing.dll
assembly is part of .NET 3.5 Service Pack 1, so you'll have to install that if you haven't already (you may also have it if you installed the ASP.NET MVC beta). After that, you should be able to add it like any other .NET reference.It shows up for me between System.Web.RegularExpressions and System.Web.Services on the ".NET" tab of the "Add Reference" dialog.
您必须在项目中包含对 System.Web.Routing 程序集的引用。
You have to include a reference to the System.Web.Routing assembly in your project.