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

推荐订阅源

P
Privacy International News Feed
WordPress大学
WordPress大学
Security Latest
Security Latest
Cyberwarzone
Cyberwarzone
K
Kaspersky official blog
Cisco Talos Blog
Cisco Talos Blog
Microsoft Security Blog
Microsoft Security Blog
G
GRAHAM CLULEY
N
News | PayPal Newsroom
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
美团技术团队
J
Java Code Geeks
I
Intezer
The Cloudflare Blog
SecWiki News
SecWiki News
S
Secure Thoughts
Microsoft Azure Blog
Microsoft Azure Blog
V2EX - 技术
V2EX - 技术
C
Cyber Attacks, Cyber Crime and Cyber Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Spread Privacy
Spread Privacy
D
DataBreaches.Net
S
Security Affairs
Help Net Security
Help Net Security
S
Securelist
F
Full Disclosure
C
Check Point Blog
F
Fortinet All Blogs
Know Your Adversary
Know Your Adversary
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
The Register - Security
The Register - Security
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园_首页
G
Google Developers Blog
Google Online Security Blog
Google Online Security Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Hacker News: Front Page
L
LINUX DO - 热门话题
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
L
LangChain Blog

博客园 - K.

OLEDB是什么玩艺儿? 网页设计必须注意的29个问题 Web 2.0网站流行使用的颜色元素 动漫中心展 Internet Explorer 8 Beta1提供中文版下载 Atlas:微软的Ajax 什么是AJAX? 马云致天下所有创业者(转) Visual C#中使用线程 计科系的网页设计大赛 asp.net常见面试题 asp.net学习之:什么是ADO.NET C#中ArrayList.CopyTo()运行错误的解决方法 大学毕业了再看这个你会后悔一辈子 常用的正则表达式 web.config文件的配置<转载> 算术表达式的计算(C#) 学习asp.net比较完整的流程 开始做自己的学生管理系统-StudentSystem V1.0
ASP.NET 和 IIS 配置自定义扩展名网页 - K.
K. · 2008-04-18 · via 博客园 - K.

看过微软的网站有时候,是.MSPX的扩展名?其实你也可以配置,很简单。Here We Go!

配置WEB.CONFIG:

<system.web>
    
<compilation>
       
<buildProviders>
          
<add extension=".mzl" type="System.Web.Compilation.PageBuildProvider" />
       
</buildProviders>
   
</compilation>
   
<httpHandlers>
       
<add verb="GET,HEAD,POST,DEBUG" path="*.mzl" type="System.Web.UI.PageHandlerFactory" validate="true" />
   
</httpHandlers>
</system.web>

配置你的IIS:

IIS中需要点击相应站点的属性 -》主目录 -》配置 —》映射-》添加

可执行文件:c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll

扩展名:.mzl

动作: 限制-》GET,HEAD,POST,DEBUG

脚本引擎选择上。

OK到这里,IIS就配好了。

这样,如果操作没有错误的话,应该IIS可以解释 .mzl的文件了。。。