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

推荐订阅源

S
Security Affairs
美团技术团队
量子位
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
Recent Announcements
Recent Announcements
Cisco Talos Blog
Cisco Talos Blog
L
LangChain Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 三生石上(FineUI控件)
U
Unit 42
T
Tenable Blog
Security Latest
Security Latest
Scott Helme
Scott Helme
B
Blog
C
Cybersecurity and Infrastructure Security Agency CISA
NISL@THU
NISL@THU
L
Lohrmann on Cybersecurity
A
Arctic Wolf
S
Schneier on Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
酷 壳 – CoolShell
酷 壳 – CoolShell
I
Intezer
Know Your Adversary
Know Your Adversary
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
雷峰网
雷峰网
The Cloudflare Blog
Cloudbric
Cloudbric
Latest news
Latest news
Project Zero
Project Zero
S
Secure Thoughts
V
Visual Studio Blog
博客园 - Franky
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
W
WeLiveSecurity

博客园 - 白亚伟

如何在快速迭代开发中写清楚需求,提高与软件工程师的沟通效率 Tomcat8.5.56配置多个服务 PowerDesign设置列名与表名的大小写规则 Nunit在VS2010加载不了程序集的解决办法 ArcGIS JavaScript API本地部署离线开发环境 读《敏捷个人-认识自我,管理自我》之学习 读《敏捷个人-认识自我,管理自我》之Scrum的核心价值观 读《敏捷个人-认识自我,管理自我》之责任 SuperMap实现2.5维地图的热区功能 温习计算机基础的好去处--网易公开课 WIN7下.Net开发遇到的又一问题:HTTP 错误 500.19 - Internal Server Error,无法访问请求的页面,因为该页的相关配置数据无效。 年终了,总结一下 VS2003出现ASP.NET版本不匹配,解决方法 CSLA中的连接管理器ConnectionManager CSLA中业务层事务的实现 CSLA.NET权限规则的困惑 转载:提升SQL Server程序员工作效率的几个技巧 svn提交时设置文件类型过滤 .net showModalDialog传递大对象时,ie出错自动关闭,求助
IIS7下安装.net1.1
白亚伟 · 2011-03-25 · via 博客园 - 白亚伟

安装IIS,再安装.netFramework1.1,再是SP1(KB867460)和语言包,最后是安全包(KB886903)

V1.1的配置文件C:\Windows\Microsoft.NET\Framework\v1.1.4322\config\machine.config中的标签</configSections>的前一行增加内容<section name="system.webServer" type="System.Configuration.IgnoreSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

最后执行下面这条命令就成功了(增加应用程序池的.net版本选项,注意X64操作系统才需要)

MKLINK /d c:\Windows\Microsoft.NET\Framework64\v1.1.4322 c:\Windows\Microsoft.NET\Framework\v1.1.4322

接下来再安装VS2003,安装后记得也安装上SP1

如果不能正常使用,请检查,一、IIS[ISAPICGI限制]配置项中的“ASP.NET v1.1.4322”是否设置为允许;二、SVN的设置中是否勾上使用“使用_svn目录代替.svn目录”,启用它后需要重新GET你的SVN目录,原因是VS2003认为下划线开头的目录是它的特殊目录,与SVN冲突了。

最近遇到不少同事为这个.net v1.1的开发环境和服务器环境苦恼,专门总结了一下经验,与大家分享。