How to set the Default Page in ASP.NET?

本文详细介绍了如何在ASP.NET应用程序中设置默认加载的页面,包括使用web.config文件配置、利用IIS设置、通过HttpHandler重定向以及利用Forms认证等方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

How to set the Default Page in ASP.NET?

Ask Question

Asked 9 years, 7 months ago

Active 3 months ago

Viewed 219k times

 

127

 

34

Is there any section or code which allows us to set default page in web.config?

For example, when people first visit my website, I want them to see CreateThing.aspx rather than Default.aspx.

The solutions I already know:

  1. Put this line of code => Response.Redirect("CreateThings.aspx") in Default.aspx Page_Loadevent but this method is really naive.

  2. We can use IIS (default page configuration,) but I wanna do the same thing over on my ASP.NET application.

  3. This could be another solution for now:

    <defaultDocument>
        <files>
            <clear />
            <add value="Default.aspx" />
            <add value="Default.htm" />
            <add value="Default.asp" />
            <add value="index.htm" />
            <add value="index.html" />
            <add value="iisstart.htm" />
        </files>
    </defaultDocument>
    

asp.net iis-7 web-config

shareimprove this question

edited May 7 at 20:57

 

TylerH

16.5k1010 gold badges5656 silver badges7171 bronze badges

asked Dec 16 '09 at 8:04

 

Tarik

38k6969 gold badges209209 silver badges311311 bronze badges

add a comment

8 Answers

activeoldestvotes

237

 

If using IIS 7 or IIS 7.5 you can use

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

http://www.iis.net/ConfigReference/system.webServer/defaultDocument

shareimprove this answer

edited Oct 9 '12 at 10:52

 

Community

111 silver badge

answered Dec 16 '09 at 8:42

 

David Glenn

20k1515 gold badges6666 silver badges9393 bronze badges

  • 5

    I found I needed to add the enabled="true" attribute to the defaultDocument tag i.e.: <defaultDocument enabled="true"> – John Ferguson May 14 '13 at 9:14

  • @JohnFerguson Cheers for that. – Nicholas V. Aug 14 '13 at 20:46

  • 1

    For me it didn't work without <configuration> tags. – user1080381 Oct 15 '13 at 12:32

  • 2

    This is to be put in the <configuration> tag of the Web.config file. – Mikaël Mayer Jun 16 '14 at 9:19

  • Will this work if the Default.aspx is in another folder? For Example: <add value="/NewSite/default.aspx"/> – Apollo Jun 30 '14 at 16:47 

show 3 more comments

23

 

Tip #84: Did you know… How to set a Start page for your Web Site in Visual Web Developer?

Simply right click on the page you want to be the start page and say "set as start page".

As noted in the comment below by Adam Tuliper - MSFT, this only works for debugging, not deployment.

shareimprove this answer

edited Nov 9 '18 at 14:27

answered Nov 13 '13 at 15:13

 

DavidTheDev

35533 silver badges1616 bronze badges

  • Hmm. Works locally, but not after I deploy to azure. – Vivek Maharajh Jun 24 '15 at 22:59

  • The accepted answer didn't work for me, but this did! Thanks! – jnel899 Jul 6 '15 at 16:26

  • 6

    @vivekmaharajh it wasn't the default because this is meant for testing/debugging - this technique doesn't configure your web server only your development environment. – Adam Tuliper - MSFT Jan 4 '16 at 8:47

  • does not help redirect when users access the directory itself. – Malcolm Salvador Feb 2 '17 at 3:37

add a comment

9

 

Map default.aspx as HttpHandler route and redirect to CreateThings.aspx from within the HttpHandler.

<add verb="GET" path="default.aspx" type="RedirectHandler"/>

Make sure Default.aspx does not exists physically at your application root. If it exists physically the HttpHandler will not be given any chance to execute. Physical file overrides HttpHandler mapping.

Moreover you can re-use this for pages other than default.aspx.

<add verb="GET" path="index.aspx" type="RedirectHandler"/>

//RedirectHandler.cs in your App_Code

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// Summary description for RedirectHandler
/// </summary>
public class RedirectHandler : IHttpHandler
{
    public RedirectHandler()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    #region IHttpHandler Members

    public bool IsReusable
    {
        get { return true; }
    }

    public void ProcessRequest(HttpContext context)
    {
        context.Response.Redirect("CreateThings.aspx");
        context.Response.End();
    }

    #endregion
}

shareimprove this answer

edited Dec 16 '09 at 8:15

answered Dec 16 '09 at 8:07

 

this. __curious_geek

34.9k1919 gold badges100100 silver badges126126 bronze badges

  • So, you say when ever a request happens to Default.aspx, the handler will redirect the request to CreateThing.aspx . It looks a generic solution. Thank you. – Tarik Dec 16 '09 at 8:13

  • But would it cause HttpHandler pollution ? – Tarik Dec 16 '09 at 8:17

  • After your edit, I need to say : Well it could be. I think the simple thing would be like Application.Run(new Form()1) :) – Tarik Dec 16 '09 at 8:20

  • @Arron: You can always create a custom configuration section that will configure your HttpHandler for various different requests. You can also catch all *.aspx requests and see if request matches any of your configured URLs. Otherwise just pass it through. – Robert Koritnik Dec 16 '09 at 8:24

add a comment

4

 

If you are using forms authentication you could try the code below:

<authentication mode="Forms">
<forms name=".FORM" loginUrl="Login.aspx" defaultUrl="CreateThings.aspx" protection="All" timeout="30" path="/"> 
</forms>
</authentication>

shareimprove this answer

answered Dec 16 '09 at 8:09

 

Zooking

2,21644 gold badges2828 silver badges3737 bronze badges

  • To use Form Authentication, should I use the providers MemberShip or stuff ? I mean when I simply select Authentication Mode as Form rather than Windows, this code will work charmingly right ? – Tarik Dec 16 '09 at 8:14

  • 7

    Everything works charmingly if you put charm in it. ;) – Robert Koritnik Dec 16 '09 at 8:24

  • I would say that this depends on the solution. If you need a more complex solution with different user profiles then you should go with MembershipProviders. But if it is a more simple setup you could just use <allow users=""/> and <deny users=""/>. – Zooking Dec 16 '09 at 10:11

add a comment

3

 

if you are using login page in your website go to web.config file

<authentication mode="Forms">
  <forms loginUrl="login.aspx" defaultUrl="index.aspx"  >
    </forms>
</authentication>

replace your authentication tag to above (where index.aspx will be your startup page)

and one more thing write this in your web.config file inside

<configuration>
   <system.webServer>
   <defaultDocument>
    <files>
     <clear />
     <add value="index.aspx" />
    </files>
  </defaultDocument>
  </system.webServer>

  <location path="index.aspx">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
   </system.web>
  </location>
</configuration>

shareimprove this answer

answered Sep 22 '14 at 7:34

 

JD-V

1,07199 silver badges1212 bronze badges

add a comment

3

 

You can override the IIS default document setting using the web.config

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

Or using the IIS, refer the link for reference http://www.iis.net/configreference/system.webserver/defaultdocument

shareimprove this answer

edited Dec 1 '14 at 4:58

answered Nov 11 '14 at 9:10

 

Mahesh Malpani

1,16588 silver badges2222 bronze badges

add a comment

1

 

I prefer using the following method:

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

shareimprove this answer

answered Aug 4 '16 at 16:26

 

encryptedwhisper

4122 bronze badges

add a comment

1

 

I had done all the above solutions but it did not work.

My default page wasn't an aspx page, it was an html page.

This article solved the problem. https://weblog.west-wind.com/posts/2013/aug/15/iis-default-documents-vs-aspnet-mvc-routes

Basically, in my \App_Start\RouteConfig.cs file, I had to add a line:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    routes.IgnoreRoute("");   // This was the line I had to add here!

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

Hope this helps someone, it took me a goodly while to find the answer.

shareimprove this answer

资源下载链接为: https://pan.quark.cn/s/1bfadf00ae14 “STC单片机电压测量”是一个以STC系列单片机为基础的电压检测应用案例,它涵盖了硬件电路设计、软件编程以及数据处理等核心知识点。STC单片机凭借其低功耗、高性价比和丰富的I/O接口,在电子工程领域得到了广泛应用。 STC是Specialized Technology Corporation的缩写,该公司的单片机基于8051内核,具备内部振荡器、高速运算能力、ISP(在系统编程)和IAP(在应用编程)功能,非常适合用于各种嵌入式控制系统。 在源代码方面,“浅雪”风格的代码通常简洁易懂,非常适合初学者学习。其中,“main.c”文件是程序的入口,包含了电压测量的核心逻辑;“STARTUP.A51”是启动代码,负责初始化单片机的硬件环境;“电压测量_uvopt.bak”和“电压测量_uvproj.bak”可能是Keil编译器的配置文件备份,用于设置编译选项和项目配置。 对于3S锂电池电压测量,3S锂电池由三节锂离子电池串联而成,标称电压为11.1V。测量时需要考虑电池的串联特性,通过分压电路将高电压转换为单片机可接受的范围,并实时监控,防止过充或过放,以确保电池的安全和寿命。 在电压测量电路设计中,“电压测量.lnp”文件可能包含电路布局信息,而“.hex”文件是编译后的机器码,用于烧录到单片机中。电路中通常会使用ADC(模拟数字转换器)将模拟电压信号转换为数字信号供单片机处理。 在软件编程方面,“StringData.h”文件可能包含程序中使用的字符串常量和数据结构定义。处理电压数据时,可能涉及浮点数运算,需要了解STC单片机对浮点数的支持情况,以及如何高效地存储和显示电压值。 用户界面方面,“电压测量.uvgui.kidd”可能是用户界面的配置文件,用于显示测量结果。在嵌入式系统中,用
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值