62,243
社区成员




public void Del(object sender)
{
Button bt = sender as Button;
Button BB = bt.FindControl("Button1") as Button;
Button bt2 = sender as Button;
Label lab4 = bt.FindControl("Label4") as Label;
Session["name"] = lab4.Text;
BB.Attributes.Add("onclick", "return confirm('确定不回复" + Session["name"] + "的留言吗?')");
}