使用post的Asp.net webservice方法?

时间:2015-04-17 06:12:25

标签: c# asp.net web-services http post

我使用HTTP get方法创建了一个Web服务方法:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void logindata()
{   
    string abc = "{\"Successfull\":\"1\"}";
    HttpContext.Current.Response.ContentType ="text/HTML";
    HttpContext.Current.Response.Write(abc);
}

如何更改此方法以便使用post代替?

0 个答案:

没有答案