3
I’m trying to add a bold in a record on the grid, but it appears as "<b>Nome</b>
" and not "Name" as it should.
I’m doing it for code behind
, through a LINQ
Follow my method displayUltimoSorteio():
private void exibirUltimoSorteio()
{
var apostadores = (from j in _contextEntities.TB_JOGOS
join s in _contextEntities.TB_SORTEIOS on j.SORT_ID equals s.SORT_ID
join a in _contextEntities.TB_APOSTADORES on j.APO_ID equals a.APO_ID
select a).Distinct().OrderBy(x => x.APO_NOME).ToList();
var tb_apostador = new List<TB_APOSTADORES>();
tb_apostador.AddRange(apostadores.Select(apostador => new TB_APOSTADORES{
APO_NOME = "<b>"+apostador.APO_NOME+"</b>"
}));
gvResultados.DataSource = tb_apostador;
gvResultados.DataBind();
}