我已经在我的ASP.NET网站上使用C#创建了一个Web服务,并且我尝试使用网站中的Web服务中的一个功能,但没有发生任何事情。
网站代码:
<asp:Label ID="Label1" runat="server"></asp:Label>
网站C#文件中的代码:
localhost.Storage getStorage = new localhost.Storage();
protected void checkItem()
{
int itemsleft = getStorage.checkStorage();
Label1.Text = itemsleft.ToString();
网络服务中的代码:
public static int Item1 = 100;
[WebMethod]
public int checkStorage()
{
return Item1;
}
有什么想法吗?