protected void Button1_Command(object sender, CommandEventArgs e)
    {
        CommentBLL cb = new CommentBLL();
        McComm     mc = new McComm();

        mc.ReplyContent = MerComRe_Reply.Text;
        mc.ReplyTime    = DateTime.Now;
        mc.McID         = mcID;
        mc.McReplyer    = Session["username"].ToString();
        int i = cb.CommentReply(mc, Convert.ToInt32(e.CommandArgument));

        if (i > 0)
        {
            Response.Redirect("MerchantCommentList.aspx");
        }
    }