[Browsable(true), Category("NewDynamic")] public int VirtualItemCount { get { if (ViewState["pgv_vitemcount"] == null) ViewState["pgv_vitemcount"] = -1; return Convert.ToInt32(ViewState["pgv_vitemcount"]); } set { ViewState["pgv_vitemcount"] = value; } } |