当前位置: 代码迷 >> ASP.NET >> 棋差一招,高手见教,该如何解决
  详细解决方案

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

热度:1273   发布时间:2013-02-26 00:00:00.0
棋差一招,高手见教
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();
}
}
  相关解决方案