請給我正確的movemenent方法。我在哪裏可以獲得有用的信息? 我想要的是: -如果單擊搜索,將出現GridView結果
有形式與參數和2個按鈕:搜索,重置。
我想實現邏輯 - 輸入一些參數並點擊搜索按鈕 - GridView的結果如下所示。
例子,文章會有幫助。謝謝!
請給我正確的movemenent方法。我在哪裏可以獲得有用的信息? 我想要的是: -如果單擊搜索,將出現GridView結果
有形式與參數和2個按鈕:搜索,重置。
我想實現邏輯 - 輸入一些參數並點擊搜索按鈕 - GridView的結果如下所示。
例子,文章會有幫助。謝謝!
有提供了很多很好的教程與MVC3一個例子。考慮閱讀它們。
主要想法是過濾數據&然後將其綁定到GridView。
例如,
DataTable data = GetData();
DataView dv = data.DefaultView;
dv.RowFilter = "id= " + 2;
GridView1.DataSource = dv;
GridView1.DataBind();
例如,
看一看[這](http://meta.stackexchange.com/questions/8231/are-answers-that-just-contain-links-elsewhere-really - 好的答案) –
好吧,我會盡量指定更多的下一次:) – lante