C# webservice 返回json字符串

用webservice搭建一个简易服务器时,返回字符串总数会自动增加  这些额外东西。

[WebMethod]     
public void K3Infos()
{
      string ss =  "{"name":"ABC"}";
      this.Context.Response.Clear();
      this.Context.Response.ContentType = "application/json;charset=utf-8";
      this.Context.Response.Write(ss);
      this.Context.Response.Flush();
      this.Context.Response.End();
}

返回值不是string,改成void,然后通过response写入需要的json字符串.

你可能感兴趣的:(C#,c#)