Ver Mensaje Individual
  #10 (permalink)  
Antiguo 13/05/2013, 13:59
element_freak
 
Fecha de Ingreso: abril-2013
Mensajes: 2
Antigüedad: 11 años
Puntos: 0
Respuesta: gridview acciones asp.net C#

Tambien te hubiera servido lo siguiente:


string lee = row.Cells[4].Text;
if (lee == "")
{
row.Visible = false;

}

o

string lee = row.Cells[4].Text;
if (string.IsNullOrEmpty(lee))
{
row.Visible = false;

}