nada , he probado y no me lo interpreta...
es más he realizado una sencilla prueba poniendo dentro de una label codigo htm y tampoco me fuciona:
este es el código que no me interpreta:
Código:
Label resultado = new Label();
resultado.Text = "<b>PUNTUACION </b>";
dataRow[1] = resultado.Text;
dataTable1.Rows.Add(dataRow);
y tampoco poniendo la combinacion texto + img:
Código:
Label resultado = new Label();
resultado.Text = "PUNTUACION";Image img = newImage();
img.ImageUrl = "../../images/numero.png";
dataRow[1] = resultado.Text + img.ImageUrl ;
dataRow[1] = resultado.Text; dataTable1.Rows.Add(dataRow);