在VS2010 中怎么建立WebService,再创建个窗体应用程序,怎么调用WebService,大家帮帮忙,小第谢谢了
3个回答
展开全部
新建一个项目,然后点击添加到服务引用就建立了一个WebService比如叫localhost,该WebService中有一些函数的书写调用。
这时在解决方案上点击“添加”选择新建项目,添加进来一个窗体应用程序。
调用WebService,比如localhost中有个类为CustomObjectService,创建这个类的对象:localhost.CustomObjectService cusobj = new localhost.CustomObjectService();
然后cusobj就可以调用CustomObjectService类的方法,和不是WS调用一样。
这时在解决方案上点击“添加”选择新建项目,添加进来一个窗体应用程序。
调用WebService,比如localhost中有个类为CustomObjectService,创建这个类的对象:localhost.CustomObjectService cusobj = new localhost.CustomObjectService();
然后cusobj就可以调用CustomObjectService类的方法,和不是WS调用一样。
展开全部
在你的aspx页面中DataList
<ItemTemplate> </ItemTemplate>中有一个<asp:lable .. ID="Lab">
然后还有一个<asp:LinkButton ... CommandName="SorH" />
再出发DataList的ItemCommand事件
if (e.CommandName == "SorH")
{
//这里只是做一个例子 你可以按照自己的需要加以修改
Label lable = e.Item.FindControl("Lab") as Label;//获取控件
lable.Visible = false;
}
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
<ItemTemplate> </ItemTemplate>中有一个<asp:lable .. ID="Lab">
然后还有一个<asp:LinkButton ... CommandName="SorH" />
再出发DataList的ItemCommand事件
if (e.CommandName == "SorH")
{
//这里只是做一个例子 你可以按照自己的需要加以修改
Label lable = e.Item.FindControl("Lab") as Label;//获取控件
lable.Visible = false;
}
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在你的aspx页面中DataList
<ItemTemplate> </ItemTemplate>中有一个<asp:lable .. ID="Lab">
然后还有一个<asp:LinkButton ... CommandName="SorH" />
再出发DataList的ItemCommand事件
if (e.CommandName == "SorH")
{
//这里只是做一个例子 你可以按照自己的需要加以修改
Label lable = e.Item.FindControl("Lab") as Label;//获取控件
lable.Visible = false;
}
<ItemTemplate> </ItemTemplate>中有一个<asp:lable .. ID="Lab">
然后还有一个<asp:LinkButton ... CommandName="SorH" />
再出发DataList的ItemCommand事件
if (e.CommandName == "SorH")
{
//这里只是做一个例子 你可以按照自己的需要加以修改
Label lable = e.Item.FindControl("Lab") as Label;//获取控件
lable.Visible = false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询