-1

我正在使用 Javascript 在页面中显示警报,请在检查纬度 Logitude 时填写有效地址

  ScriptManager.RegisterStartupScript(this, this.GetType(), "Redit", "alert('Please first fill all address details.'); window.location='" + Request.ApplicationPath + "Home.aspx';", true);

当此警报显示如果我们单击确定然后页面是回发并清空所有其他 Tesxbox

4

2 回答 2

0

它不是让回帖,而是页面重新加载,因为你有权利window.location=告诉浏览器再次加载该页面,自然一切都丢失了。

只保留警报,如果您喜欢后面的代码,请进行更改,因为无论如何您都使用后面的代码来显示该警报。

于 2013-01-19T10:26:36.080 回答
0

似乎问题在于,在发出警报后,您使用以下代码更改了当前位置:

window.location='" + Request.ApplicationPath + "Home.aspx';"

如果删除此行,问题是否会重现?

于 2013-01-19T10:27:11.363 回答