XPInIISThe setting is very simple. If you call 2003, the parent path is enabled,VistaThe management interface and method of IIS are quite different, and there are more problems. The most typical problem is the permission problem, especiallyASPAndAccess.
IIS installation in Vista
Similar to XP, in Vista, all versions except the Home version are integrated with IIS and upgraded to IIS 7.0. However, the IIS service is not enabled by default and needs to be enabled again. The method for enabling is simple. You only need to follow the steps below:
"START" => "Control Panel" => "programs and functions", and select "turn on or off Windows functions ". If Windows Vista does not close UAC, a prompt is displayed. Confirm and continue. If IIS 7.0 only supports static content, you can directly select "Internet information service ", if you want the Web server to support dynamic content, expand the "World Wide Web Service" branch and select all the required options. Click "OK" to start IIS installation in Windows Vista; after the installation process is complete, you can enter http: // localhost/in the browser for testing.
After IIS7 is installed, You can see "Administrative Tools" in all programs in the Start Menu, which has an "Internet Information Service Manager". If not, follow these steps: start> right-click Properties> Start Menu tab> Custom. Set "System Management Tools" to "display in all program Menus" or "on all program menus and start Menus ". show ".ASP + Access Environment Configuration
After IIS7 is installed by default, the ASP program will find a prompt indicating that the database connection failed. I found it online because the MS Jet Engine changed the location of the temporary directory, however, the database fails to use because it does not have temporary access permissions.
You must set the Application Pool to Classic. NET AppPool instead of the Default AppPool. You can set each site in the website directory or separately at the site. After selecting the site to be set, click "Basic settings" on the right to bring up the application pool Settings dialog box.
Then, add an "Authenticated Users" user to the "System Disk: WindowsServiceProfilesNetworkServiceAppDataLocalTemp" directory. The AppData directory is hidden and you can enter a path directly in the address bar, or hide the file in the folder option.
To set permissions, right-click the Temp folder, select Properties, select Security tab, click Edit, and then click Add ", in the following "input object name to select", enter Authenticated Users, OK, and return to "Temp permission". The Authenticated Users permission is fully controlled and checked.
Enable parent path support
Select "ASP" on the site homepage, and set "enable parent path" to "True" in the "behavior" group.
In this way, you can use the IIS environment on Windows Vista and XP.