asp.net-mvc-2 – 在Visual Studio 2010 RC中更改默认浏览器

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-2 – 在Visual Studio 2010 RC中更改默认浏览器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Visual Studio 2010(RC)中,右键单击.aspx页面后,不再有“浏览”上下文菜单。现在如何更改默认浏览器?

默认情况下,它似乎使用操作系统默认浏览器,但我宁愿在调试ASP.net应用程序时使用IE。 (我正在用ASP.net MVC测试这个)

解决方法

在MVC项目的.aspx视图中没有“浏览”选项,因为它们不是直接可浏览的。

我倾向于做的是在Site的根目录中添加一个Default.aspx webform,当右键单击它将给你浏览选项。您需要确保更新您的路由,否则IIS / Cassini将尝试提供服务,像这样

public void Page_Load(object sender,System.EventArgs e) {
        // Change the current path so that the Routing handler can correctly interpret
        // the request,then restore the original path so that the OutputCache module
        // can correctly process the response (if caching is enabled).

        string originalPath = Request.Path;
        HttpContext.Current.RewritePath(Request.ApplicationPath,false);
        IHttpHandler httpHandler = new MvcHttpHandler();
        httpHandler.ProcessRequest(HttpContext.Current);
        HttpContext.Current.RewritePath(originalPath,false);
    }

此外,另一个快速是按CTRL-F5(不运行调试),这将启动网站,而不进入调试模式。

原文链接:https://www.f2er.com/aspnet/253913.html

猜你在找的asp.Net相关文章