2006年10月5日

IIS代码管理(2):创建应用程序池和属性

摘要: 下面的代码实现应用程序池的创建,并设置一些属性。string strAppPoolName = "MyAppPool1";System.DirectoryServices.DirectoryEntry appPoolRoot = new System.DirectoryServices.DirectoryEntry(@"IIS://localhost/W3SVC/AppPools");System.DirectoryServices.DirectoryEntry newAppPool = appPoolRoot.Children.Add(strAppPo 阅读全文

posted @ 2006-10-05 08:19 goodvify 阅读(165) 评论(0) 推荐(0) 编辑

下面的代码实现遍历 IIS 6应用程序池的一个方法

摘要: 下面的代码实现遍历 IIS 6应用程序池的一个方法:System.DirectoryServices.DirectoryEntry appPoolRoot = new System.DirectoryServices.DirectoryEntry(@"IIS://localhost/W3SVC/AppPools");//得到默认应用程序池的方法可以直接使用 IIS://localhost/W3SVC/AppPools/DefaultAppPoolSystem.Collections.IEnumerator AppPoolEnumer = appPoolRoot.Childr 阅读全文

posted @ 2006-10-05 08:18 goodvify 阅读(148) 评论(0) 推荐(0) 编辑

Visual Studio 2005 Web Deployment Projects版本不同引发的问题

摘要: 为了方便Visual Studio 2005发布为单一dll,微软发布了一个Visual Studio 2005 插件,Visual Studio 2005 Web Deployment Projects,在微软的不同文档里,这个插件提供了两个下载地址,分别是:下载地址一:(大小为:905K)http://download.microsoft.com/download/c/c/b/ccb4877f-55f7-4478-8f16-e41886607a0e/WebDeploymentSetup.msi下载地址二:(大小为:919K)http://download.microsoft.com/dow 阅读全文

posted @ 2006-10-05 08:16 goodvify 阅读(123) 评论(0) 推荐(0) 编辑

用例建模(Use Case Modeling)--捕获用户需求

摘要: 用例建模(Use Case Modeling)--捕获用户需求翻译:王咏武简介 用例是应用程序开发中的一个关键技术,主要用来捕获系统的高层次(High Level)用户功能性需求。这个绕口的描述 主要是因为用例不能用于捕获非功能性需求,也不能用于捕获内部的功能性需求。试图这样做将会造成灾难。首先因为用例 是一个非正式的和不精确的建模技术。其次用例的另一个用途是建立我们系统的基本结构,它不仅是定义需求的单位,而且 是估计我们的工作量的单位。 为什么我们需要用例模型? 用例模型从高层次(High Level)和用户的角度描述了我们的系统会做什么,即项目的目的和范围。用例是估计工作量的单 位也是发布 阅读全文

posted @ 2006-10-05 00:29 goodvify 阅读(139) 评论(0) 推荐(0) 编辑

导航