父页面刷新肯定是指与原来父页面不同了? 可以传值到父页面中达到这种效果
子页面中:
protected void Button1_Click(object sender, EventArgs e)
{
HttpContext.Current.Session["任意字段"] = 控件的值;
Response.Write("<script>alert('成功')</script");
Server.Transfer("父页面");
}
父页面中,判断是否传值。
protected void Page_Load(object sender, EventArgs e)
{
if (HttpContext.Current.Session["上面的字段"] ==null )
{
}
else
{
需要刷新的地方= HttpContext.Current.Session["上面的字段"].ToString();
}
}
温馨提示:答案为网友推荐,仅供参考