After installing Windows Vista and knowing that IIS or 7 is included, I want to play a game. From installation to configuration, I feel much more important than IIS6 under Windows 2003.
IIS7 Installation
In Windows Vista, IIS7 is not installed by default. Therefore, after installing Windows Vista, if you need to install IIS7, you have to do it yourself. The installation procedure is: Start Control Panel program to enable or disable Windows function Internet Information Service. When installing IIS7, you must note that if you need ASP, ASP. NET, and other support, you need to install the function module, which is not installed by default.
"Program" position in Control Panel
"Enable or disable Windows" in "program"
To install IIS7, select the function module to use
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 ".
Open the Internet Information Service Manager and you will be able to see the IIS7 homepage.
IIS7 configure the ASP + Access Environment
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: \ Windows \ ServiceProfiles \ NetworkService \ AppData \ Local \ Temp" directory. The AppData directory is hidden, you can enter a path 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.
Now, the IIS7 installation and ASP + Access configuration in Windows Vista have been completed.