Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが更新ボタンを押すと、DataBoundイベントが開始されます。このイベントをロックする方法は?gridviewがすべての行を列挙するまで、待機するのに多くの時間がかかります。
ポストバックをしDataBindてはいけません。だからそれを:GridViewで包むだけです!IsPostBack
DataBind
GridView
!IsPostBack
protected void Page_Load(Object sender, EventArgs e) { if(!IsPostBack) { DataBindGridView(); } }