Flex 调用.NET WebService WebMethod FaultResult(还未解决)
时间:2011-06-10 来源:羊_羊
在asp.net application项目里创建了一个asmx文件,跟着为其添加WebMethod,如下:
[WebMethod]
public DataTable getBins(string ws)
{
string[] s = ws.Split(',');
string sql = @"select BinID from tblWHBin where WHID = '{0}' and SectionID = '{1}'";
sql = string.Format(sql, s[0], s[1]);
return DataProvider.Instance(DataProviderType.IStorageServer).GetDataTable(sql);
}
相关阅读 更多 +