Visual Studio 2010 DevServer 给我 403 错误
我在 Windows 7 上的 Visual Studio 2010 Professional (VS) 中创建了一个 C# MVC 项目,但我无法在 VS 中运行和调试它。
VS 给我:无法连接到 ASP.NET 开发服务器 开发服务器在 http://localhost:63785/ 上启动,但这给了我“/”应用程序中的服务器错误。 HTTP 错误 403 - 禁止。版本信息:ASP.NET Development Server 10.0.0.0
我可以直接使用以下命令启动应用程序:“C:\Program Files\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.EXE”/port:8080 /path :“D:\ Visual Studio 2010 \ Projects \ MvcApplication1 \ MvcApplication1 \但我无法以这种方式使用VS调试 我的同事尝试使用 IIS 运行该应用程序,但这也给他带来了 403 错误。
我对 IIS 或 ASP 没有太多经验,我尝试用 google 搜索并尝试了一些想法,但似乎没有一个对我有用。
I have a C# MVC project created in Visual Studio 2010 Professional (VS) on Windows 7 but I am not able to run it and debug it in VS.
VS gives me: Unable to connect to the ASP.NET Development Server
The development server starts tho on http://localhost:63785/ but that gives me Server Error in '/' Application. HTTP Error 403 - Forbidden. Version Information: ASP.NET Development Server 10.0.0.0
I am able to start the application directly using: "C:\Program Files\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.EXE" /port:8080 /path:"D:\visual studio 2010\Projects\MvcApplication1\MvcApplication1\ but I am not able to use VS debugging that way
My colleague tried to run the application using IIS but that gives him the 403 error as well.
I dont have much experience regarding IIS or ASP, I tried to google it and tried few ideas but none seems to be working for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当激活以下复选框时,我在 Firefox 中遇到过这个问题:(
在解决方案资源管理器中右键单击网站)->
属性页->
启动选项->
服务器/NTLM 身份验证
I had this problem once in firefox when the following checkbox was activated:
(Website right click in solution explorer)->
Property Pages->
Start Options->
Server / NTLM Authentication
也许您不小心限制了对项目所有页面的访问?检查 web.config 中的
authentication
/authorization
部分Maybe you accidentally restricted access to all pages of your project? Check
authentication
/authorization
sections in web.config