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 know :
Put this line of code =>
Response.Redirect("CreateThings.aspx")
inDefault.aspx
Page_Load
event but this method is really naive.We can use
IIS
(default page configuration) but I wanna do the same thing over Asp.NET application.
If you know a better solution, please let me know.
Thanks in advance.
P.S : The reason why I am asking about Web.Config
is I believe Web.Config
would help us through this.
Edit: I am just wondering how Microsoft .NET team forgot such a simple thing :)
Edit :
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>
If you are using forms authentication you could try the code below:
If using IIS 7 or IIS 7.5 you can use
http://www.iis.net/ConfigReference/system.webServer/defaultDocument
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.
You can override the IIS default document setting using the web.config
Or using the IIS, refer the link for reference http://www.iis.net/configreference/system.webserver/defaultdocument
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:
Hope this helps someone, it took me a goodly while to find the answer.
Map default.aspx as HttpHandler route and redirect to CreateThings.aspx from within the HttpHandler.
Moreover you can re-use this for pages other than default.aspx.
//RedirectHandler.cs in your App_Code