First, the installation of IIS7
Windows IIS7 and IIS7.5 are not installed by default, so if you need to install iis7/iis7.5 after you install Windows Vista/windows 7/windows 2008, you'll have to do it yourself.
The steps to install are: Start Control Panel program turn on or off Windows features Internet Information Services. IIS7 installation needs to be aware of, if you need ASP, ASP. NET, and so on, is required to install the function module, the default is not installed.
After the IIS7 installation is complete, you can see "Administrative Tools" in all Programs in the Start menu, there is an Internet Information Service Manager, and if not, you can add the following steps: Start Right-click the "Start" menu tab "Customize" Set the system administration tool to " Display "or" on all Programs menu and Start menu on all Programs menu.
Open Internet Information Services Manager to see IIS7 's home page
IIS7 Configuration asp+access usage Environment
After IIS7 is installed by default, the ASP program discovers that the prompt database connection failed because the Msjet engine changed the location of the temp directory, but did not have temporary access rights, resulting in database usage failure.
To set the application pool (applicationpool) as Classic.netapppool instead of the default DefaultAppPool, you can set each site in the site directory, or you can set it separately on the site. After selecting the site you want to set up, click Basic Settings on the right side of the point to bring up the Application Pool Settings dialog box.
Then add a "authenticatedusers" user to the "system disk: Windowsserviceprofilesnetworkserviceappdatalocaltemp" directory, where the AppData directory is hidden, You can enter the path directly in the address bar when entering, or display hidden files in Folder options.
To set permissions step: Right-click the Temp folder, select Properties Select the Security tab Click Edit to come out the Temp Permissions dialog box, click Add, and then enter AuthenticatedUsers in the "Enter object name to select", OK to return to " Temp's Permissions ", will be authenticated users of the full control on the hook, ok" OK.
Enable parent Path support
Select ASP on the Site home page, and then set the Enable parent path to true in the behaviors group.
Right-click the Web folder, select Properties Select the Security tab Click Edit to come out of the Web Site Folder Permissions dialog box, click Add, enter everyone in the "Enter object name to select", OK to return to folder permissions, Put the full control of everyone's permissions on the hook, OK. "Note: For the convenience of this setting, detailed security configuration, please consult the relevant professionals."
Run ASP + Access Web site on the 64bit Win2008
1, install ASP.
Control Panel \ Program \ Turn on or off Windows features \ roles: Web server (IIS) \ Add role service
Select ASP to determine
2, create a Web site
3, set the application pool where the Web site is located
Advanced Settings \ Enable 32-bit applications: True
Now the website should be able to run normally.
If it still doesn't work, you may need to modify the permissions on the directory where the database files reside (note that the *.mdb file requires write permission to the IUSR user), read-only settings.
This completes the installation of the IIS7 and uses the asp+access configuration.