如何设置默认页面asp.net

前端之家收集整理的这篇文章主要介绍了如何设置默认页面asp.net前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Set Default Page in Asp.net8个
我刚刚在我的服务器上发布了我的网站,但是当我输入浏览器www.mysite.com时,我收到这个错误:HTTP错误403.14 – 禁止
Web服务器配置为不列出此目录的内容.但是,如果我键入www.mysite.com/Home.aspx它正确加载.那么,我如何设置默认页面?我已经在我的web.config中有这个:
<system.webServer>
   <defaultDocument>
     <files>
       <add value="Pages/Home.aspx" />
     </files>
   </defaultDocument>
  </system.webServer>

解决方法

ASP.NET WebForms

在web.config文件中,尝试以前使用clear标签

<system.webServer>
  <defaultDocument>
    <files>
      <clear />
      <add value="Pages/Home.aspx" />
    </files>
  </defaultDocument>
</system.webServer>

看看这里:http://www.iis.net/configreference/system.webserver/defaultdocument

ASP.NET MVC

根据您正在使用的asp.net mvc版本,您可以将其放在不同的文件(v3或更旧版本的〜/ Global.asax.cs或v4或更新版本的〜App_Start / RouteConfig.cs中).在这两种情况下,您将看到一些注册路由的东西,因为asp.net mvc使用路由,而不是Webforms等文件.因此,您可以更改默认值:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        name: "Default",url: "{controller}/{action}/{id}",defaults: new 
        { 
            controller = "Home",// default controller
            action = "Index",// default action on the controller
            id = UrlParameter.Optional
        }
    );
}

看看这里:http://www.codeproject.com/Articles/624181/Routing-Basics-in-ASP-NET-MVC

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

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