gpt4 book ai didi

javascript - 防止 asp.net 中浏览器后退按钮上的 javascript

转载 作者:行者123 更新时间:2023-12-01 05:35:59 27 4
gpt4 key购买 nike

我从服务器端调用了 javascript 代码。它工作正常,但现在一旦用户使用浏览器后退按钮并来到我的页面,Javascript 代码(即 ScriptManager.RegisterStartupScript)将再次被调用。我怎样才能防止这种情况发生。我相信页面加载中的某些东西。有人可以检查一下并提供帮助吗?

下面是我的代码。

 protected void Button1_Click1(object sender, EventArgs e)
{

this.ADDMsg.Visible = false;
string dropdownvalue = HiddenField.Value;
this.ADDMsg.Text = "";
bool flag = true;
try
{

if (flag)
{
if (this.vpsReq == null)
{
this.vpsReq = new VPSRequest();
try
{

this.Record_Request_VPS(this.vpsReq, dropdownvalue);


ScriptManager.RegisterStartupScript(this, this.GetType(), "ShowStatus", "javascript:alert('Request Submitted');", true);


}
catch (Exception exception2)
{
this.ADDMsg.Text = exception2.Message;

}

}
else
{

}


}
else
{
this.ADDMsg.Text = "Please correct the errors above and click <i>Submit</i>.";
}

}
catch (NullReferenceException)
{
}

}

页面加载是:

 protected void Page_Load(object sender, EventArgs e)
{

txtFrom.Attributes.Add("readonly", "readonly");

if (IsPostBack)
{
ClientScript.RegisterHiddenField("isPostBack", "1");
}



clnImplDate = txtFrom.Text;
User = new User();

try
{
User = (User)this.Session["User"];
}
catch (Exception)
{
}
if ((User.UserID == null) || (User.UserID == ""))
{
User = Utility.GetUserInfo(User);
}

this.Session["User"] = User;

}

此外,ispostback 变量的用法如下所示(为了更清楚起见,添加此代码)。

 $(document).ready(function () {

var isPostBackObject = document.getElementById('isPostBack');
if (isPostBackObject == null) {
$('#<%= ADDMsg.ClientID %>').hide();
}
$("#" + "ClaimVEBP").hide();
});

任何解决方案?即使使用 jQuery 也值得赞赏。

最佳答案

在 page_load 事件处理程序中更改以下代码块:

if (!IsPostBack)
{
ClientScript.RegisterHiddenField("isPostBack", "1");
}

!Postback means that the Clientscript will run only in the first loading of the page.

关于javascript - 防止 asp.net 中浏览器后退按钮上的 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34016785/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com