如何實現在使用WebClientQuery1時,在Page_Load時先讓 GridView1 隱藏,等使用者按下Button1(查詢)後才讓GridView1 顯示.
1.WebGridView的visible=false
2.Page_Load撰寫:
WebClientQuery1.Show(Panel1)

3.Button1.OnClick撰寫:
WebClientQuery1.Execute(Panel1);
WebGridView1.Visible = true;
WebGridView1.DataBind();