Results 1 to 4 of 4
-
11-08-2010, 05:07 PM #1
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,176
- Thanks
- 744
- Thanked 701 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
How to Set Default Document with Web.config file with IIS 7
How to Set Default Document with Web.config file with IIS 7
A default document is the file that a web server displays when you browse to a folder without specifying a file name.
With IIS 7 you can set the default document on your web.config file easily. Here is a demonstration how you can set Test.aspx as your default document.
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="Test.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
When IIS sees this new default document entry, it merges with parent or global list of default documents.
To remove an individual default document from the list.
<files>
<remove value="Test.aspx" />
</files>
To remove a default document entry from the inherited or parent list of default documents, do something like this:
<files>
<clear/>
<add value="Test.aspx" />
</files>Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
-
08-19-2011, 09:10 AM #2
Sophomore
- Join Date
- Mar 2011
- Location
- india
- Posts
- 50
- Thanks
- 1
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
woow very nice post, great tutorial, i like your way step by step, its little difficult but nice post thanx.
-
08-27-2011, 04:51 AM #3
Senior
- Join Date
- Aug 2011
- Posts
- 671
- Thanks
- 0
- Thanked 7 Times in 7 Posts
- Feedback Score
- 0
quite good topic u wrote a such good manner.. thanks
-
01-11-2012, 05:29 AM #4
Junior
- Join Date
- Jul 2011
- Posts
- 239
- Thanks
- 0
- Thanked 4 Times in 4 Posts
- Feedback Score
- 0
If you disable default documents but have enabled directory browsing, IIS returns a directory listing when a request for the root directory arrives from a browser.
Virtual dedicated server √ Dedicated hardware √ Ms Hyper-v Technology √
Similar Threads
-
How to convert an html document into am msword document?
By smith78 in forum HTML / DHTMLReplies: 0Last Post: 02-17-2010, 12:53 AM -
How to find a pdf file is normal file or shared review file
By sunshine in forum JavaScript & AJAXReplies: 0Last Post: 01-04-2010, 11:21 AM -
Query on XML document
By amber.long83 in forum Web Development - Programming & CodingReplies: 1Last Post: 06-23-2009, 11:59 AM -
Universal Document Converter
By Amit.Verma in forum All Other Search EnginesReplies: 4Last Post: 08-22-2008, 07:56 PM -
Document Storage
By Amit.Verma in forum All Other Search EnginesReplies: 4Last Post: 08-19-2008, 06:19 AM


Reply With Quote

