I'm trying to add a bold to a record in the grid, but it appears as " <b>Nome</b>
" and not " Name " as it should.
I'mdoingthisforcodebehind
,throughLINQ
Here'smyViewUltimateShort()method:
privatevoidexibirUltimoSorteio(){varapostadores=(fromjin_contextEntities.TB_JOGOSjoinsin_contextEntities.TB_SORTEIOSonj.SORT_IDequalss.SORT_IDjoinain_contextEntities.TB_APOSTADORESonj.APO_IDequalsa.APO_IDselecta).Distinct().OrderBy(x=>x.APO_NOME).ToList();vartb_apostador=newList<TB_APOSTADORES>();tb_apostador.AddRange(apostadores.Select(apostador=>newTB_APOSTADORES{APO_NOME="<b>"+apostador.APO_NOME+"</b>"
}));
gvResultados.DataSource = tb_apostador;
gvResultados.DataBind();
}