我们的用户将:
1.打开一个标签执行某些任务
2.打开另一个标签更改customerId并执行其他任务
3.返回上一个标签并尝试继续使用旧的customerId
会话状态将更改为包含新的customerId。我一直在研究一个控件,它会检查customerId是否已经改变,并提示用户他们想要继续使用哪个ID。
背后的代码
public partial class CustomerChanged : System.Web.UI.UserControl
{
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this.Page.InitComplete += Page_InitComplete;
}
void Page_InitComplete(object sender, EventArgs e)
{
if (IsPostBack)
{
if (Convert.ToInt32(ViewState["CustID"]) != Globals.CurrentCust.CustId)
{
CustomValidator err = new CustomValidator();
err.ValidationGroup = "CustomerChanged";
err.IsValid = false;
err.ErrorMessage = "The customer has changed.";
Page.Validators.Add(err);
btnOldCustId.Text = "Old CustID \n" + ViewState["CustID"].ToString();
btnNewCustId.Text = "New CustID \n" + Globals.CurrentCust.CustId.ToString();
btnOldCustId.OnClientClick = string.Format("return changeCustomer({0},'{1}');", ViewState["CustID"].ToString(), Globals.GeneralSiteUrl);
ScriptManager.RegisterStartupScript(this, this.GetType(), "CustomerChangedModalDialog", "ShowCustomerChangedModalDialog();", true);
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
ViewState.Add("CustID", Globals.CurrentCust.CustId);
}
}
protected void btnNewCustId_Click(object sender, EventArgs e)
{
Response.Redirect(Request.RawUrl);
}
}
}
ASCX
<script type="text/javascript">
function ShowCustomerChangedModalDialog() {
var dlg = $("#CustomerChangedModal").dialog({
title: 'Select Customer ID',
resizable: false,
modal: true
});
dlg.parent().appendTo(jQuery("form:first"));
};
function changeCustomer(customerId, baseUrl) {
$.ajax({ url: "/General/Accounts/change.account?id=" + customerId + "&admin=false", async: false });
$("#CustomerChangedModal").dialog('close');
return false;
}
</script>
<div id="CustomerChangedModal" style="width: 440px; height: 250px; overflow: auto; display: none;">
The session information has changed.
Which account ID do you wish to use?
<br />
<br />
<asp:Button ID="btnNewCustId" runat="server" OnClick="btnNewCustId_Click" />
<asp:Button ID="btnOldCustId" runat="server" />
</div>
我目前正在尝试访问Page_InitComplete中控件的ViewState数据,但它似乎是空的。根据{{3}},在InitComplete时可以访问ViewState。我需要防止在Page_Load之前阻止其他一些操作发生。如何在post back befoer Page_Load中访问控件ViewState?
额外信用:如果您想就如何完成我感兴趣的整体任务提出建议。
答案 0 :(得分:1)
我认为您没有正确阅读文档:
在页面初始化期间,页面上的控件可用 每个控件的UniqueID属性都设置为......如果当前请求是a 回发,还没有加载回发数据和控制 属性值尚未恢复为视图中的值 状态。强>
尝试使用Page_Load事件。
答案 1 :(得分:1)
您应该使用Page.PreLoad事件。在将ViewState的值加载到控件层次结构中之后引发它。
或者,引用msdn:
在页面加载自身和所有控件的视图状态之后,以及在处理Request实例包含的回发数据之后,引发。