public static StringBuilder GetSection(Dictionary <string, object> _infoLogin, string _section, string _sectionAction, string _id)
    {
        StringBuilder _html    = new StringBuilder();
        StringBuilder _content = new StringBuilder();

        int _userError = int.Parse(_infoLogin["UserError"].ToString());

        switch (_section)
        {
        case "MAIN":
            Dictionary <string, object> _termServiceHCSConsentRegistrationResult = HCSUtil.GetTermServiceHCSConsentRegistration(_infoLogin["StudentId"].ToString());

            if (!String.IsNullOrEmpty(_termServiceHCSConsentRegistrationResult["TermServiceStatusHCSConsentRegistration"].ToString()))
            {
                _content.AppendFormat(
                    "<center>" +
                    "   <span class='f8'>นักศึกษาเคยแสดงความประสงค์ว่า</span><br />" +
                    "   <span class='f7 bold underline'>\"{0}\"</span><br />" +
                    "   <span class='f9'>ให้มหาวิทยาลัยมหิดลขึ้นทะเบียนสิทธิหลักประกันสุขภาพแห่งชาติ<br />กับโรงพยาบาลสังกัดมหาวิทยาลัยมหิดลไว้แล้ว</span>" +
                    "</center>" +
                    "<p class='br'></p>" +
                    "<div class='red'>" +
                    "   <span class='bold'>หมายเหตุ</span><br />กรณีที่นักศึกษามีข้อสงสัย หรือต้องการเปลี่ยนแปลงความประสงค์สามารถติดต่อสอบถามได้ที่ กองกิจการนักศึกษา โทร. 0 2849 4514 ในวันและเวลาราชการ หรือติดต่อได้ที่ Inbox ของ FB Fanpage : @MahidolHealth" +
                    "</div>", (_termServiceHCSConsentRegistrationResult["TermServiceStatusHCSConsentRegistration"].Equals("Y") ? "ยินยอม" : "ไม่ยินยอม")
                    );

                _html.AppendFormat("<div class='view usererror{0}' id='{1}-panel'>", _userError, HCSUtil.ID_SECTION_TERMSERVICEHCSCONSENTREGISTRATION_INFO.ToLower());
                _html.AppendLine("      <div class='panel panel-info'>");
                _html.AppendLine("          <div class='panel-body'>");
                _html.AppendFormat("            <div class='lang lang-th lang-en font-family-th regular {0}'>{1}</div>", "f10", _content);
                _html.AppendLine("          </div>");
                _html.AppendLine("      </div>");
                _html.AppendLine("  </div>");
            }

            if (_userError.Equals(0))
            {
                _html.AppendFormat("{0}", SectionMainUI.GetMain(_id, _termServiceHCSConsentRegistrationResult));
            }

            break;

        case "DIALOG":
            if (_sectionAction.Equals(HCSUtil.SUBJECT_SECTION_DOWNLOADREGISTRATIONFORMSELECTWELFARE))
            {
                _html = SectionDialogUI.SelectWelfareUI.GetMain();
            }

            break;
        }

        return(_html);
    }