本文介绍了以表格或网格格式显示Web服务结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我需要以表格或网格格式显示Web服务结果.

请在这方面帮助我.

提前谢谢.

问候.
Kiran ganga

Hi All,

I need to display webservice results in table or grid format.

Please help me in this regard.

Thanks in advance.

Regards.
Kiran ganga

推荐答案



protected void Page_Load(object sender, EventArgs e)
{
  if(!IsPostBack)
  {
  //webservice results implicitly loaded into variable as it's not part of the question how to get webservice   results
  var results;

    GridView1.DataSource = results;
    GridView1.DataBind();

 }
}


这篇关于以表格或网格格式显示Web服务结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 04:11