Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/11/2008, 22:56
Avatar de jlbautista
jlbautista
 
Fecha de Ingreso: enero-2007
Ubicación: Durango, Méx.
Mensajes: 175
Antigüedad: 18 años
Puntos: 1
Respuesta: Limpiar el formulario después de un postback

Código:
If (IsPostBack)
{
   //AQUI YA DEPENDE DE TUS CONTROLES DONDE CAPTURES LA INFO Y COMO LO QUIERAS HACER
   //POR EJEMPLO:
   TextBox1.Text = string.Empty;
   GridView1.DataSource = null;
   //ETC ETC
}