public void init()
    {
        CommentBLL cb = new CommentBLL();
        DataSet    ds = cb.GetCommentListByMcID(mcID);

        MerComRe_Content.Text   = ds.Tables[0].Rows[0]["mc_content"].ToString();
        TBip.Text               = ds.Tables[0].Rows[0]["mc_ip"].ToString();
        TBname.Text             = ds.Tables[0].Rows[0]["mc_name"].ToString();
        TBtime.Text             = ds.Tables[0].Rows[0]["mc_time"].ToString();
        Button1.CommandArgument = mcID.ToString();
    }