ASP. NE website release notes, asp. ne Release Notes
Key points for deploying ASP. NET websites to IIS:
1. For Windows XP, the account for running IIS is "computer name \ ASPNET", and for Windows Vista and Windows Server 2003
The IIS account is "network service ". If a folder on the website allows users to upload images and files,
The account running IIS must have full control permissions on the folder. For Windows XP
In Windows Resource Manager, select the "Folder Options" command from the "Tools" menu,
Deselect "use simple file sharing.
2. in Windows XP, you must create a login name (computer name \ ASPNET) for the account running IIS ),
Create a database user for the database to be used, and grant the "db_owner" role to have access to the database.
Procedure:
(1) create a user "computer name \ ASPNET" in the database ";
(2) Right-click the user name "computer name \ ASPNET", select the "properties" menu, and select
"User ing": select the database used by the website and assign the "db_owner" role to the "computer name \ ASPNET" account.
3. Problems Encountered in Win7:
(1) install VS2013 in Win7, install IIS, create a virtual directory, and prompt information when browsing the Web page:
The current identity (iis apppool \ DefaultAppPool) does not have write access permission to "C: \ Windows \ Microsoft. NET \ Framework \ v4.0.30319 \ Temporary ASP. NET Files,
After checking, the system does not have the directory C: \ Windows \ Microsoft. NET \ Framework \ v4.0.30319 \ Temporary ASP. NET Files, because VS2013 is installed first and IIS is installed later.
Enter the command line window and run:
C: \ Windows \ Microsoft. NET \ Framework \ v4.0.30319> aspnet_regiis-I
This can be completed successfully.
(2) When you browse the Web page again, the following message is displayed:
Compiler error message:CS0016: failed to write the output file "c: \ Windows \ Microsoft. NET \ Framework \ v4.0.30319 \ Temporary ASP. NET Files \ root \ 26676eb7 \ 92c7e946 \ deny" -- "access is denied. "
Solution: Open the server system drive C, open the window, right-click temp, choose Properties> Security> edit, and add the modify and write permissions to IIS_IUSRS user control permissions.
You can smoothly browse ASP. NET websites.
From the cold branches to the lonely sand continent.