首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

棋差一招,高手见教,该如何解决

2012-01-29 
棋差一招,高手见教http://www.wopos.com/webservice/weather.asmx这个是个WEB服务它里面有个getWeather()

棋差一招,高手见教
http://www.wopos.com/webservice/weather.asmx
这个是个WEB服务
它里面有个getWeather()   方法。
我已经引用到我的项目里面去了
但是我怎么去调用里面的方法呢?》
好象要用一个对象吧?

[解决办法]
//MathComputer也是一个WEB服务,
localhost1.MathComputer mc = new QueryTickets.localhost1.MathComputer();
mc.Add(1,1);

localhost.CdataRead CQueryTicket=new QueryTickets.localhost.CdataRead();
DataSet ds=new DataSet();
if(rdoTrain_number.Checked)
{
ds=CQueryTicket.GetTicketsByTrainNumber(txtTrain_number.Text);
if(ds!=null)
{
DataGrid1.DataSource=ds.Tables[0];
DataGrid1.DataBind();
}
else
{
DataGrid1.DataSource=null;
DataGrid1.DataBind();
}
}
else
{
ds=CQueryTicket.GetTicketsByStartAndEndStation(txtStart_station.Text,txtEnd_station.Text);
if(ds!=null)
{
DataGrid1.DataSource=ds.Tables[0];
DataGrid1.DataBind();
}
else
{
DataGrid1.DataSource=null;
DataGrid1.DataBind();
}
}

热点排行