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

推荐订阅源

H
Help Net Security
博客园 - Franky
GbyAI
GbyAI
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
爱范儿
爱范儿
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
博客园_首页
MongoDB | Blog
MongoDB | Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recent Announcements
Recent Announcements
Scott Helme
Scott Helme
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
C
CERT Recently Published Vulnerability Notes
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Jina AI
Jina AI
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
L
LangChain Blog
L
LINUX DO - 最新话题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
H
Hacker News: Front Page
MyScale Blog
MyScale Blog
P
Palo Alto Networks Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
AI
AI
T
Troy Hunt's Blog
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
S
Secure Thoughts
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
S
Security @ Cisco Blogs
Cloudbric
Cloudbric
E
Exploit-DB.com RSS Feed
Attack and Defense Labs
Attack and Defense Labs

博客园 - 从无到有.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 服务器的配置 - 从无到有.NET 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

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