<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<title>页面标题</title>
<script language="javascript" type="text/javascript">
function guanbi()
{
document.getElementById("buanbi").click();
}
</script>
</head>
<body class="body" onunload="guanbi()">
<input />
</body>
</html>
后台CS代码
protected void Button1_ServerClick(object sender, EventArgs e)
{
执行相关的操作
//Response.Write("<script>window.parent.opener=null;window.parent.close();</script>");
//Response.Write("<script>window.location.href='default.aspx';</script>");
JScript.ExecuteClientScript("window.close();", this.Page);
}