0


C# Webservice创建、发布、部署、调用(VS2013)

一:WebService开发:

(1) 创建

1.新建项目:

2.添加web服务:

右键-添加-Web服务(ASMX)

添加后显示如下:

3.在添加的web服务中添加一个方法:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;

namespace WebApplication1
{
    /// <summary>
    /// WebService1 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBin
标签: c#

本文转载自: https://blog.csdn.net/AbbyGOAhead/article/details/142335985
版权归原作者 AbbyGOAhead 所有, 如有侵权,请联系我们删除。

“C# Webservice创建、发布、部署、调用(VS2013)”的评论:

还没有评论