最近我的机子Asp.net程序都不能正常访问了,总是报CS0016,没有权限的错误。

看了下面的文章,顺利解决。希望对有类似问题的朋友有帮助。

"CS0016: Could not write to output file 'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\application1\c11b43f6\cf3ec03\rizcntet.dll' . The directory name is invalid."

Solution

CAUSE

The system TEMP and TMP variables point to a folder that does not exist. The compiler generates temporary files in the folder where the TEMP and the TMP variables point to before the files are copied to the Temporary ASP.NET Files folder. However, the folder where the system variables point to is deleted when you restart the computer. Therefore, the compiler cannot generate the temporary files.

RESOLUTION

  1. Create a temporary folder under %Systemroot%, and then name it Temp.
  2. Grant full permissions on the Temp folder to the aspnet user account in .NET Framework 1.0 or to the NETWORK SERVICE user account in .NET Framework 1.1.
  3. Right-click My Computer , and then click Properties .
  4. On the Advanced tab, click Environment Variables .
  5. Select the TEMP variable under System variables , and then click Edit .
  6. Type %SystemRoot%\TEMP in the Variable Value box, and then click OK .
  7. Repeat steps 5 and 6 to edit the TMP variable. Click OK two times.
  8. Click Start , and then click Run .
  9. To reset Internet Information Services (IIS), type iisreset on the command prompt.

    Note If the error message that is mentioned in the "Symptoms" section of this article persists, restart the computer.

(http://support.microsoft.com/kb/825791/en-us)


posted on 2007-01-09 10:18  ColorSky  阅读(255)  评论(0编辑  收藏  举报