protected void btnReplyProductConsultation_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(this.txtReply.Text))
     {
         this.ShowMsg("请输入回复内容", false);
     }
     if (ProductCommentHelper.BatchReplyProductReviews(this.reviewIdList, this.txtReply.Text))
     {
         this.txtReply.Text = string.Empty;
         base.CloseWindow(null);
     }
     else
     {
         this.ShowMsg("回复商品评论失败", false);
     }
 }