0
我有以下asp.net方法,我想將其轉換爲.asmx Web服務。我如何做到這一點。請任何幫助。如何將ASP.NET方法轉換爲ASP.NET .asmx Web服務
public ActionResult AddCpty(string Id, string Type)
{
//code for Addcp
return result;
}
我想通過將[WebMethod]
屬性放在方法的頂部來轉換它。
[WebMethod]
public ActionResult AddCpty(string Id, string Type)
{
//code for Addcp
return result;
}