惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

博客园 - 从无到有.NET

[转帖]如何提升JavaScript操作DOM的效率 FCKEditor使用RequiredFieldValidator验证时必须点击两次的解决办法 揭开正则表达式的神秘面纱 比较完整的一个 Ajax 类库汇总 解决ASP.NET的进程帐户没有访问IIS的权限 MSN Messenger去广告和其他修改方法 - 从无到有.NET - 博客园 如何取消“本页不但包含安全的内容,也包含不安全的内容。是否显示不安全的内容。” 的提示 【转贴】datagrid数据导出到excel文件给客户端下载的几种方法 ASP.NET 中的正则表达式 asp.net TreeView安装、使用(如何将TreeView打包发布)(带CheckBox选择框的TreeView的初始化,TreeView客户端操作:选择父节点后自动选择所有子节点,子节点选择后自动选择父节点)(TreeView节点精确定位) 使用C#调用外部Ping命令获取网络连接情况 在.Net中嵌入资源文件到程序集中 RegularExpressionValidator 【原创】如何去掉有源代码管理的项目中的相关信息 关于PHP--session的问题集锦解决方案 php和asp对象的等价关系 My SQL出错代码及出错信息对照 Windows 环境下的 PHP5 与 Apache 服务器的配置 php.ini中文解释
解决“未能创建 Mutex”的问题
从无到有.NET · 2006-05-22 · via 博客园 - 从无到有.NET

英文原文及帖子地址:

http://forums.asp.net/1109781/ShowPost.aspx

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

反正我就这么搞定了,供参考吧