-
Notifications
You must be signed in to change notification settings - Fork 2
/
PaginaProdutos.cs
33 lines (30 loc) · 1.06 KB
/
PaginaProdutos.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System.Collections.Generic;
using System.Text;
class PaginaProdutos : PaginaDinamica
{
public override byte[] Get(SortedList<string, string> parametros)
{
string codigo = parametros.ContainsKey("id") ?
parametros["id"] : "";
StringBuilder htmlGerado = new StringBuilder();
foreach (var p in Produto.Listagem)
{
bool negrito = (!string.IsNullOrEmpty(codigo) && codigo == p.Codigo.ToString());
htmlGerado.Append("<tr>");
if (negrito)
{
htmlGerado.Append($"<td><b>{p.Codigo:D4}</b></td>");
htmlGerado.Append($"<td><b>{p.Nome}</b></td>");
}
else
{
htmlGerado.Append($"<td>{p.Codigo:D4}</td>");
htmlGerado.Append($"<td>{p.Nome}</td>");
}
htmlGerado.Append("</tr>");
}
string textoHtmlGerado = this.HtmlModelo.Replace(
"{{HtmlGerado}}", htmlGerado.ToString());
return Encoding.UTF8.GetBytes(textoHtmlGerado);
}
}