0
我有我的web服務來檢索數據,我的問題是我使用gridview輸出數據,我得到表中的所有字段我只想選擇幾個,如何我可以這樣做嗎?web服務數據集,輸出的自定義字段
繼承人我的代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
public partial class _Default : System.Web.UI.Page
{
public static DataSet ds;
protected void Page_Load(object sender, EventArgs e)
{
localhost.Service1 myws = new localhost.Service1();
ds = myws.GetDataSet();
GridView1.DataSource = ds;
GridView1.DataBind();
}
}
感謝
\我已經試過這一點,如果我點擊在設計視圖中格箭頭我該怎麼點擊下一步?我似乎無法找到它。 – user1389384