protected void LoadData()
 {
     ArticleCommentController comment_obj = new ArticleCommentController();
     DataTable dt = comment_obj.GetDetailById(_idx);
     if (dt.Rows.Count > 0)
     {
         txtArticle.Text = dt.Rows[0]["Headline"].ToString();
         txtName.Text = dt.Rows[0]["CommentName"].ToString();
         txtEmail.Text = dt.Rows[0]["CommentEmail"].ToString();
         txtCommentText.Text = dt.Rows[0]["CommentText"].ToString();
         LoadStatus2RadioBtnList(dt.Rows[0]["Publish"].ToString().Trim());
     }
 }