我正在使用C#ASP .NET 4.5开发webform。
我的模态在大多数情况下都很有效。我有一个名为CustomerLookup.aspx的页面,它使用bootstrap模式。但是当我关闭模式时,导航到我网站的主页,然后单击后退按钮返回到我的CustomerLookup.aspx页面 - 出现模式。
我不知道它是否有所作为,但这两个页面使用不同的MasterPage。
我正在使用Bootstrap 3.0.0
这是我的Site.Master中的JS代码
function openModal() {
$('#uxModal').modal('show');
}
这是我在按钮点击事件上的代码隐藏,以弹出我的模态:
protected void uxTestButton_Click(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(this, this.GetType(), "Pop", "openModal();", true);
}
答案 0 :(得分:0)
当我使用HTML按钮控件时,我没有遇到同样的问题 - 只有asp:Button服务器控件。我只是完全放弃了服务器控制 - 就像我应该这样。