怎么点击确定按钮关闭当前窗口,并返回父页面,并且父页面刷新。

2025-04-05 14:00:34
推荐回答(4个)
回答1:

父页面刷新肯定是指与原来父页面不同了? 可以传值到父页面中达到这种效果
子页面中:
protected void Button1_Click(object sender, EventArgs e)
{
HttpContext.Current.Session["任意字段"] = 控件的值;
Response.Write("")); 关闭子页面

回答4: