Link to home
Start Free TrialLog in
Avatar of codequest
codequest

asked on

How to indicate folder path for web.config default page

How might I indicate a folder path (e.g.  AppPages/PageGroup1/xyz.aspx ) In setting the default page in a web.config file, using this type of construct:

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

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Kyle Abrahams, PMP
Kyle Abrahams, PMP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of codequest
codequest

ASKER

Helpful link, thanks