我使用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
代替?