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

推荐订阅源

Simon Willison's Weblog
Simon Willison's Weblog
P
Privacy International News Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
T
Troy Hunt's Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
V2EX - 技术
V2EX - 技术
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
O
OpenAI News
Cloudbric
Cloudbric
Google Online Security Blog
Google Online Security Blog
Schneier on Security
Schneier on Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Help Net Security
Help Net Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
L
Lohrmann on Cybersecurity
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Spread Privacy
Spread Privacy
NISL@THU
NISL@THU
N
News and Events Feed by Topic
T
Tenable Blog
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
The Hacker News
The Hacker News
C
CXSECURITY Database RSS Feed - CXSecurity.com
宝玉的分享
宝玉的分享
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
V
Visual Studio Blog
P
Proofpoint News Feed
Webroot Blog
Webroot Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Jina AI
Jina AI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
L
LangChain Blog
The Register - Security
The Register - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

博客园 - David

TFS Server 不存在时,如何去除对应Server的Workspaces 更改已有程序集中的资源 记录:如何删除TFS Project SQL – TRUNCATE vs DELETE SQL – Character data (varchar) 又好久没写东西了! Powershell: Send mail with attachment 【Update】 - David SSIS: Execute SSIS Package in command prompt 【Update】 随感 Windows Workflow Foundation 了解 通过代码将Word 2007 template (dotx)文档转换Word 2007 (docx)文档(续) 通过代码将Word 2007 template (dotx)文档转换Word 2007 (docx)文档 创建Word2007文档而无需安装Word2007 Visual WebGUI - 如何处理MessageBox的DialogResult值 Visual WebGUI - 如何将Dialog的结果传回主窗体 Visual WebGUI Report - 导出到PDF Visual WebGUI 在 Vista IIS 7 中的配置 项目管理片语 - Schedule 给儿子的歌!
在IIS 7设置ASP.NET 1.1(在Vista中使用VS2003)
David · 2007-07-13 · via 博客园 - David

需要在Vista中使用VS2003来开发的话,则需要安装.NET 1.1 sp1。
下面是需要的几个东东的链接:

  • .NET Framework Version 1.1 Redistributable Package
  • .NET Framework Version 1.1 Service Pack 1
  • ASP.NET Security Update for .NET Framework 1.1 SP1

    其实下面的英文链接是上面中文的的原文哦。

  • 补充一点:
    就是有可能你在Vista运行asp.net 1.1的网站会遇到类似的问题: "Unable to find script library '/aspnet_client/system-web/1-1-4322/webvalidation.js'" 。文章的链接有一个解决方法,对我这里还是有效的。
    先说说我遇到的吧!
    我是先安装 .net 2.0 然后再安装 .net 1.1 的。在按照前面的说明都是配置好了之后,发现会出现刚才提到的没法找 WebUIValidation.js 的问题。
    我首先就按照提示所说,运行了' aspnet_regiis -c'。但是没啥效果,因为我的aspnet_client/system_web/1_1_4322/的路径已经存在,js文件也有了。
    接着就按照下面做一些调整:
    1、把原来的 aspnet_client 的文件夹改名为 aspnet_client_old 。
    2、打开 VS2003 的 CommandLine 。(记得要 Run As Administrator)
    3、输入 aspnet_regiis -u ,以卸装 asp.net 1.1
    4、输入 aspnet_regiis -i,再安装 asp.net 1.1
    5、输入 aspnet_regiis -c,复制和创建 asp.net 1.1 所需的 js 文件到 aspnet_client/system_web/1_1_4322/
    6、在管理工具打开 IIS 7,看看 ISAPI 中的 asp.net 1.1 是否是 Enabled 的,如果是Disable,请 Enable。
    7、复制  aspnet_client_old 中的文件到  aspnet_client
    8、删除  aspnet_client_old