首页 > 代码库 > Step by Step 创建一个Web Service

Step by Step 创建一个Web Service

 

(一)创建Web Service

创建一个新的解决方案,第一个项目类型选择ASP.NET Empty Web Application

 

image

image

 

添加一个新项目 Web Service

 

image

 

然后再创建一个类Contact

image

 

代码分别如下。

Contact.cs:

 

HelloWebService.asmx:

 

 

(二)创建客户端

下面创建一个客户端调用Web Service,检验一下是否正确。创建一个ASP.NET Empty Web Application

 

image

 

添加服务引用

 

image

image

 

image

 

WebForm1.cs代码为

 

最后运行客户端,分别点击按钮,得到演示效果

 

image

Step by Step 创建一个Web Service