我的项目中有这个模块,我有2个网格视图。一个用于Main MenuModule,另一个用于它的subMenu。我创建了一个List,这样当我的主菜单模块上的一行被检查并且它有一个相应的子菜单时,它将显示在SubMenu Gridview上。
现在,当我回到那个页面时(我使用了会话),我可以看到我的SubMenuGridview,但是我注意到我勾选的复选框都已消失了。
我的问题在于我的页面如何记住我选中的复选框,包括我的主菜单模块gridview和我的子菜单gridview。
protected void cbxSelect_CheckedChanged(object sender, EventArgs e)
{
SubMenuGrid.DataSource = null;
SubMenuGrid.DataBind();
Business.SubMenuModules sub = new Business.SubMenuModules();
List<oSubList> oList = new List<oSubList>();
int counter = 0;
foreach (GridViewRow nRow in gvModuleList.Rows)
{
Int32 intModID = Convert.ToInt32(nRow.Cells[0].Text);
CheckBox chkBx = (CheckBox)nRow.FindControl("cbxSelect");
if (chkBx.Checked == true)
{
counter = counter + 1;
var oModList = sub.GetAllMenuPerModuleID(intModID);
if (oModList.Count > 0)
{
foreach (var rec in oModList)
{
oSubList olist = new oSubList
{
ID = rec.ID,
ModuleID = rec.ModuleID,
Submenu = rec.Submenu,
Description = rec.Description
};
oList.Add(olist);
}
Session["list"]=oList;
SubMenuGrid.DataSource = oList;
SubMenuGrid.DataBind();
}
}
}
}
答案 0 :(得分:0)
这可以使用:
完成对于查看状态 - 请在评论中查看以下发布的链接。
基于自定义会话的解决方案
我们将使用预渲染方法。 在页面初始化之后但在保存其ViewState并呈现之前,将调用此方法。 是否要将Request.Form加载到会话变量中,并在每次调用不是回发的页面时将其加载回来。
protected void Page_PreRender(object sender, EventArgs e)
{
if (!Page.IsPostBack && Session["PageState"] != null)
{
NameValueCollection formValues = (NameValueCollection)Session["PageState"];
String[] keysArray = formValues.AllKeys;
for (int i = 0; i < keysArray.Length; i++)
{
Control currentControl = Page.FindControl(keysArray[i]);
if (currentControl != null)
{
if (currentControl.GetType() == typeof(System.Web.UI.WebControls.TextBox)) ((TextBox)currentControl).Text = formValues[keysArray[i]];
else if (currentControl.GetType() == typeof(System.Web.UI.WebControls.CheckBox))
{
if (formValues[keysArray[i]].Equals("on")) ((CheckBox)currentControl).Checked = true;
}
else if (currentControl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
((DropDownList)currentControl).SelectedValue = formValues[keysArray[i]].Trim();
}
}
}
if(Page.IsPostBack) Session["PageState"] = Request.Form;
}
<强> SessionPageStatePersister 强>
抽象PageStatePersister类表示封装页面状态存储和处理的基类。 可以使用默认的HiddenFieldPageStatePersister类或使用SessionPageStatePersister完成存储。 使用SessionPageStatePersister时,.NET Server管理会话对象中的_VIEWSTATE而不是表单上的隐藏字段。 更改状态存储看起来像这样:
protected override PageStatePersister PageStatePersister
{
get
{
return new SessionPageStatePersister(this);
}
}