
IIS 服务器
envykok
这个作者很懒,什么都没留下…
展开
-
IIS5、IIS6、IIS7的ASP.net 请求处理过程比较
IIS5、IIS6、IIS7的ASP.net 请求处理过程比较 <br />ASP.NET是一个非常强大的构建Web应用的平台,它提供了极大的灵活性和能力以致于可以用它来构建所有类型的Web应用。 <br />绝大多数的人只熟悉高层的框架如: WebForms 和 WebServices --这些都在ASP.NET层次结构在最高层。<br />这篇文章的资料收集整理自各种微软公开的文档,通过比较 IIS5、IIS6、IIS7 这三代 IIS 对请求的处理过程, 让我们熟悉A转载 2010-07-13 00:14:00 · 215 阅读 · 0 评论 -
IIS 7 与应用程序池
<br />对于 IIS6、IIS7, 每个应用程序池都会创建一个 W3WP.exe 进程。 但是, 并不是所有情况都是一个应用程序池对应一个 W3WP.exe 进程。 Web Garden , 或者一些异常发生时候,就会一个 应用程序池对应多个 W3WP.exe 进程。<br /> <br /> Web Garden 指的是一个应用程序可以在多个进程(w3wp.exe)中来执行,一次请求使用其中的一个。用这个的主要目的是提高程序的可用性。当其中一个进程发生错误,那么也不会影响其他进转载 2010-08-30 10:34:00 · 244 阅读 · 0 评论 -
ASP.NET: System.BadImageFormatException: An attempt was made to load a program with an incorrect format. on Win2k8 64bit, IIS7
<br />Solution:<br /> <br />Enable 32-Bits Application for hosted application pool<br /><br /> <br /> <br /> <br />原创 2010-09-15 21:16:00 · 309 阅读 · 0 评论 -
IIS7 Authentication Setting
<br /> <br />原创 2010-09-30 11:01:00 · 194 阅读 · 0 评论 -
URL rewrite in IIS6 & IIS7
IIS6 Install Ionics Isapi Rewrite Filter (http://iirf.codeplex.com/)Configure IISAdd IsapiRewrite4.dll to IIS ISAP filte2. Update IsapiRewrite4.ini file (C:/IonicIsapiRewriter-1.2.16-bin/lib/IsapiRewrite4.ini)IIS7原创 2010-12-03 13:22:00 · 440 阅读 · 0 评论 -
How to do URL Rewrites with ASP.NET 2.0 3.0 3.5 on IIS6 and IIS7 and What is Wild Card Mapping
The Problem<br />Over the pastseveral years I’ve found myself running into the same problem over andover so I thought I’d blog the solution so at least I don’t waste timefiguring it out again. So, when do you need this? The answer for meis that I转载 2010-12-03 13:11:00 · 274 阅读 · 0 评论 -
How IIS log file name match site name
<br />IIS 7 Log files location<br />%SystemDrive%/inetpub/logs/LogFiles/W3SVC[IIS_ID]<br />IIS 6 Log files location<br />%windir%/System32/LogFiles/W3SVC[IIS_ID]<br /> <br /> <br />[IIS_ID] can get from the following image ID column value.<br />原创 2010-11-19 00:23:00 · 182 阅读 · 0 评论