Advertisement
gkpoll

Untitled

Oct 7th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.18 KB | None | 0 0
  1. string tabelaHtml = "<table>" +
  2.                 "" +
  3.                 "<col width = \"14%\" >" +
  4.                 "<col width = \"14%\" >" +
  5.                 "<col width = \"14%\" >" +
  6.                 "<col width = \"14%\" >" +
  7.                 "<col width = \"14%\" >" +
  8.                 "<col width = \"14%\" >" +
  9.                 "<col width = \"14%\" >" +
  10.                 "<tr>" +
  11.                 "<td>NumSeq</td>" +
  12.                 "<td>DataPrevPublic</td>" +
  13.                 "<td>DataGerPrevia</td>" +
  14.                 "<td>DataPublicDef</td>" +
  15.                 "<td>DescrEstado</td>" +
  16.                 "<td>ExistePDF?</td>" +
  17.                 "<td>DescrTipo</td>" +
  18.                 "</tr>";
  19.  
  20.             // para criar uma linha:
  21.  
  22.             tabelaHtml += "<tr>" +
  23.                 "<td>1</td>" +
  24.                 "<td>20/09/2019</td>" +
  25.                 "<td>20/9/2019 00:12</td>" +
  26.                 "<td>---</td>" +
  27.                 "<td>PREVIA</td>" +
  28.                 "<td>SIM</td>" +
  29.                 "<td>AUTOMATICA</td>" +
  30.                 "</tr>";
  31.  
  32.             tabelaHtml += "</table>";
  33.      
  34.             this.AddSuccessMessage("Teste executado com sucesso!<br/>" + tabelaHtml);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement