//批量还原
 protected void Button4_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(Request.Form["idChk"]))
     {
         Page.ClientScript.RegisterStartupScript(this.GetType(), "ss", "alert('请先选择需要操作的邮件!!!');", true);
     }
     else
     {
         bll.ReFromRecycle(Request.Form["idChk"], buser.GetLogin().UserID);
     }
     DataBind();
 }
示例#2
0
 public int Message_Recovery(string ids)
 {
     //msgBll.ReCoverByIDS
     msgBll.ReFromRecycle(ids, mu.UserID);
     return(Success);
 }