1.GridView
<asp:GridView ID="GridView1" runat="server" OnPageIndexChanging="GridView1_PageIndexChanging" AllowPaging="True" GridLines="None" OnSelectedIndexChanged="GridView1_SelectedIndexChanged"> ... </asp:GridView>
2.点击跳转事件
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
var selectRow = GridView1.SelectedRow;
Session["Code"] = selectRow.Cells[1].Text;
... ...
// 方法1 ,js跳转
string script = @"
<script>
window.open(Details.aspx?param=add', 'add','width=800,height=500scrollbars=yes,resizable=yes');
</script>
ClientScript.RegisterStartupScript(this.GetType(), "pop",script)
//方法2 , 重定向
string url = "details.aspx?param=add";
Response.Redirect(url);
}
为什么方法1,方法2都无法跳转?
点击后只是页面刷一下。