为 ASP.NET 4.0 手动配置 Web 服务器
我使用 Visual Web Developer 2010 并通过 HTTP 选择新网站选项时出现此错误...请帮助
i m using visual web developer 2010 and on selecting new website option via HTTP i am getting this error...please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保 ASP.NET 4.0 已向 IIS 注册。如果不是,您可以使用以下命令注册它:
然后重试。
Make sure ASP.NET 4.0 is registered with IIS. If it isn't you could register it with the following command:
and then try again.
转到
C:\windows\Microsoft.Net\Framework\v4.0.30319\aspnet_regiis
(选择要向 IIS 注册的任何框架,我选择 Framework 4)
双击或右键单击 &选择以管理员身份运行。
Go to
C:\windows\Microsoft.Net\Framework\v4.0.30319\aspnet_regiis
(Choose whatever framework to register with IIS me selecting Framework 4)
Double-click or right click & choose run as administrator.
我也遇到了同样的问题,我解决这个问题的方法不是通过注册 .NET 版本。问题出在您正在使用的
MySQL
连接器上的.net
版本,按照我的示例:使用
.NET 4.0
的项目,但是我在 4.5 下添加了对MySQL
DLL 连接器的引用。在路径下:
应该有各种程序集,您可以在其中添加引用,确保它与项目正在使用的
.NET
匹配。希望这有帮助。
I have had the same issue, The way I went about solving it was not by registering the
.NET
version. the issue comes down the the.net
version on theMySQL
connector that you are using, as per my example:Project using
.NET 4.0
, however I was adding a reference toMySQL
DLL connectors under the 4.5.Under the path:
There should be a variety of assemblies where you add the reference to, make sure it matches the
.NET
that the project is using.Hope this helps.