コード例 #1
0
ファイル: Grid.cs プロジェクト: elementar/Suprifattus.Util
 protected override void LoadViewState(object savedState)
 {
     base.LoadViewState(savedState);
     cols        = (GridColumnCollection)ViewState["cols"];
     currentPage = ViewState["currentPage"] == null ? 1 : (int)ViewState["currentPage"];
 }
コード例 #2
0
ファイル: Grid.cs プロジェクト: elementar/Suprifattus.Util
		protected override void LoadViewState(object savedState)
		{
			base.LoadViewState(savedState);
			cols = (GridColumnCollection) ViewState["cols"];
			currentPage = ViewState["currentPage"] == null ? 1 : (int) ViewState["currentPage"];
		}