我已经开始在 ASPX web 项目中工作,它已经有一个现有的asmx
文件。它包含大约 4 个 WebMethods,这 4 个 Webmethods 显示了http://localhost:2133/WebServices.asmx
现在我尝试添加新的 WebMethod ,其名称GetCities
与现有的非常相似,但它没有在http://localhost:2133/WebServices.asmx
. 我尝试重新编译它。当我深入检查(服务参考)时,我找不到 WebServiceWebServices.asmx
被引用的位置。
现有方法
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetAvailable(int clientCode)
{
try
{
//Db Querying statements
}
catch (Exception exc)
{
}
}
我添加的新方法
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetCities()
{
try
{
//Db Querying statements
}
catch (Exception exc)
{
}
}
完全糊涂了,请分享你的想法。