13/04/2010, 13:18
|
| | Fecha de Ingreso: enero-2010
Mensajes: 31
Antigüedad: 14 años, 11 meses Puntos: 0 | |
Respuesta: Problemas del ToolTip con Ñ y acentos GRACIAS POR SU AYUDA!!!
Efectivamente estuve investigando y asi fue como resolvi el problema(negritas):
string tool = "";
for (int i = 0; i < this.GridView1.Rows.Count; i++)
{
for (int j = 0; j < this.GridView1.Columns.Count; j++)
{
tool= tool+ Server.HtmlDecode(Convert.ToString(this.GridView1.Rows[i].Cells[j].Text.Trim())+",");
}
}
Label1.ToolTip = tool;
Última edición por ruben_zer0; 13/04/2010 a las 13:33 |