public static StringBuilder GetMain()
        {
            StringBuilder _str = new StringBuilder();

            _str.AppendLine("<div class='ui horizontal divider header container'>");
            _str.AppendLine("   <i class='upload icon font-th regular black'></i>&nbsp;");
            _str.AppendLine("   <span class='lang lang-th f7 font-th regular black'>นำเข้าผู้สมัครรับทุน</span>");
            _str.AppendLine("   <span class='lang lang-en f7 font-en regular black'>Import Register Scholarship</span>");
            _str.AppendLine("</div>");
            _str.AppendLine("<div class='paddingTop10'>");
            _str.AppendFormat(" <div class='ui container' id='{0}'>", _idContent);
            _str.AppendFormat("     <div class='mini ui button' id='{0}-btndownload'>", _idContent);
            _str.AppendLine("           <i class='file excel outline icon font-th regular black'></i>");
            _str.AppendLine("           <span class='lang lang-th f9 font-th regular black'>ดาวน์โหลดแบบบันทึกการรับทุน</span>");
            _str.AppendLine("           <span class='lang lang-en f9 font-en regular black'>Download Scholarship Register Template</span>");
            _str.AppendLine("       </div>");
            _str.AppendFormat("     <div id='{0}'>{1}</div>", ImportUI._idContent, ImportUI.GetMain());
            _str.AppendFormat("     <div id='{0}'></div>", ListUI._idContent);
            _str.AppendLine("   </div>");
            _str.AppendLine("</div>");

            return(_str);
        }