摘要:
http://blog.csdn.net/hualusiyu/article/details/7920614. Net 中 WebServices 的实战下面呢,就来具体看看在 . Net 中如何开发一个 WebServices 以及如何使用这个 WebServices 开发环境:Windows 7 下 IIS 7.5Visual Studio Team System 2008Sql Server 2008首先来看看如何开发一个 WebServices 先建立一个 ASP.NET 应用程序项目,然后再在项目中添加一个 WebServices 服务,然后就是在这个 WebServiceTest 阅读全文
摘要:
View Code View Code using System; using System.Collections; using System.DirectoryServices; using Microsoft.Win32; namespace SCL { public class IISHelper { static DirectoryEntry iisDE = new DirectoryEntry("IIS://localhost/W3SVC"); //判断 IIS是否安装 public static bool IsIISSetup { get { object o 阅读全文