we are deploy application using MSBuild Script in IIS7.Application deployed successfully.But Default Document is not created.if anyone knows please tell me.
How to create Default Document IIS7 Using MSBuild Script?
IIS6 Default Document Creation:
Comments: ** Comment from web user: _tomhunter_ **
How to create Default Document IIS7 Using MSBuild Script?
IIS6 Default Document Creation:
Comments: ** Comment from web user: _tomhunter_ **
You can specify a default document via the Web.config in IIS7:
```
<configuration>
<system.webServer>
<defaultDocument enabled="false">
<files>
<add value="myFile.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
```
See this blog post for more information: http://blogs.msdn.com/b/rakkimk/archive/2007/05/25/iis7-how-to-configure-the-default-document-of-the-website-in-its-web-config.aspx