Ejemplo n.º 1
0
    public static StringBuilder GetFrmRecommendUploadTranscriptBackside()
    {
        StringBuilder _html = new StringBuilder();
        List <string> _ls   = new List <string>();

        _html.AppendLine("<div class='dialogmessage-form'>");
        _html.AppendLine("  <div class='form-layout'>");
        _html.AppendLine("      <div class='form-content'>");

        _ls = UDSDB.GetListText("TH", "Recommend.txt");

        _html.AppendFormat("        <div class='th-label'>{0}<br />{1}<br />{2}<br />{3}<br />{4}<br />{5}<br /><br />{6}</div>", _ls[22], _ls[23], _ls[24], _ls[25], _ls[26], _ls[27], _ls[28]);
        _html.AppendLine("      </div>");
        _html.AppendLine("  </div>");
        _html.AppendLine("</div>");

        return(_html);
    }
Ejemplo n.º 2
0
    public static StringBuilder GetFrmRecommendUploadProfilePicture()
    {
        StringBuilder _html = new StringBuilder();
        List <string> _ls   = new List <string>();

        _html.AppendLine("<div class='dialogmessage-form'>");
        _html.AppendLine("  <div class='form-layout'>");
        _html.AppendLine("      <div class='form-content'>");

        _ls = UDSDB.GetListText("TH", "Recommend.txt");

        _html.AppendFormat("        <div class='th-label'>{0}</div>", _ls[0]);
        _html.AppendLine("      </div>");
        _html.AppendLine("  </div>");
        _html.AppendLine("</div>");

        return(_html);
    }
Ejemplo n.º 3
0
    public static StringBuilder GetFrmRecommendUploadIdentityCard()
    {
        StringBuilder _html = new StringBuilder();
        List <string> _ls   = new List <string>();

        _html.AppendLine("<div class='dialogmessage-form'>");
        _html.AppendLine("  <div class='form-layout'>");
        _html.AppendLine("      <div class='form-content'>");

        _ls = UDSDB.GetListText("TH", "Recommend.txt");

        _html.AppendFormat("        <div class='th-label'>{0}<br />{1}<br />{2}<br />{3}<br />{4}<br />{5}<br /><br />{6}</div>", _ls[1], _ls[2], _ls[3], _ls[4], _ls[5], _ls[6], _ls[7]);
        _html.AppendLine("      </div>");
        _html.AppendLine("  </div>");
        _html.AppendLine("</div>");

        return(_html);
    }
Ejemplo n.º 4
0
    public static StringBuilder GetFrmContactUS()
    {
        StringBuilder _html = new StringBuilder();
        List <string> _ls   = new List <string>();
        int           _i    = 0;

        _html.AppendLine("<div class='dialogmessage-form'>");
        _html.AppendLine("  <div class='form-layout'>");
        _html.AppendLine("      <div class='form-content'>");

        _ls = UDSDB.GetListText("TH", "ContactUS.txt");

        _html.AppendFormat("        <div class='th-label'>{0}</div>", _ls[0]);
        _html.AppendLine("          <hr />");

        _ls = UDSDB.GetListText("EN", "ContactUS.txt");

        _html.AppendFormat("        <div class='en-label'>{0}</div>", _ls[0]);
        _html.AppendLine("      </div>");
        _html.AppendLine("  </div>");
        _html.AppendLine("</div>");

        return(_html);
    }