使用WebClientQuery,如何在User使用預設條件外,再加上A=1的WHERE條件?
可通過WebClientQuery的GetWhere的方法來取得Where的條件,然後自行SetWhere
string where = WebClientQuery1.GetWhere(Panel1);
where = where + " and A=1";
Master.SetWhere(where);
WebGridView1.DataBind();