转载:http://www.cnblogs.com/sjpisaboy/archive/2006/12/07/585749.html 最近碰到一个问题:我们实验室的一台IBM EServer服务器被运到学校的信息办进行托管,这台服务器上面跑着一些ASP.NET网站.ASP网站以及一个JSP的网站.服务器的操作系统是Window Server 2003,并在其上安装了IIS6.0.Tomcat5.5等服务器软件.众所周知,IIS服务器占用80端口,而Tomcat服务器一般用8080端口.本来两者互…
引言 有时我们会在IIS中启用一些定时服务,但是你必须清楚IIS会定期回收Asp.net的应用程序的.首先来看IIS啥时候回收APPDomain. APPDomain 回收时机 There are several things that can cause ASP.NET to tear down your AppDomain. When you modify web.config, ASP.NET will recycle the AppDomain, though the w3wp.ex…
Using LocalDB with Full IIS, Part 1: User Profile http://blogs.msdn.com/b/sqlexpress/archive/2011/12/09/using-localdb-with-full-iis-part-1-user-profile.aspx Using LocalDB with Full IIS, Part 2: Instance Ownership http://blogs.msdn.com/b/sqlexpress/ar…
用VS2015中创建了一个非常简单的ASP.NET5程序: 在Startup.cs中只输入一行代码: using System; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; namespace HellowAspNet5 { public class Startup { public void Configure(IApplicationBuilder app) { app.Run(context => context…