解决“未能创建 Mutex”的问题

摘要 : Solve the "unable to create Mutex" problem

I have got the same issue. It seems like Visual studio 2005 and the web application pool running ASP.NET 2.0 are having a conflict over the temporary folder.
The workaround I have got for now is:
  - If you have visual studio 2005 is open, close it
  - Go tot the ASP.NET temporary folder for v2.0 of the framework
    <Windows dir>\Microsoft.Net\Framework\v2.0<extra numbers>\Temporary ASpNET pages
  - Remove the folder for your application (or all of them)
  - Reset IIS (on a command line window, >iisreset) [not always needed, but I had to use it sometimes]
  - First Browse your page from IE (http://localhost/your app)
  - Then reopen Visual studio 

1 如果你还开着VS2005,关掉。
2 到ASP.NET的临时目录下面<Windows dir>\Microsoft.Net\Framework\v2.0<extra numbers>\Temporary ASpNET pages
3 删除你的项目的那个目录(或者都删除也行)
4 重启IIS(如果在命令行下输入 iisreset)
5 先打开IE访问你的项目(http://localhost/yourapp)
6 然后再打开VS2005

上一篇 :IIS HTTP 500 内部服务器错误 服务器无法加载应用程序 /LM/W3SVC /LM/W3SVC 找不到指定的元数据
下一篇 :javascript线程模拟