DataGridをページングしていますが、OnPageIndexChanged
メソッドは次のようになります。
protected void dgSurvey_PageIndexChanged(object source, DataGridPageChangedEventArgs e)
{
dgSurvey.CurrentPageIndex = e.NewPageIndex;
dgSurvey.DataBind();
}
そのメソッドでは、dgSurvey.DataSource
= << my data source
>>も呼び出す必要がありますか、それとも、DataGridで有効になっている場合、これはViewStateが処理する必要があるものの1つですか?
ベストプラクティスは何ですか?