我已经从服务器端调用了一个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");
}
!回发
表示Clientscript仅在页面的第一次加载中运行。