Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/11/2010, 08:53
arcenett
 
Fecha de Ingreso: junio-2005
Mensajes: 70
Antigüedad: 18 años, 11 meses
Puntos: 0
Respuesta: Actualizar pagina cuando tengo algún error.

podrías utilizar en el code-behind Response.Redirect(Request.RawUrl);

try
{
mi proceso
}
catch
{
Response.Redirect(Request.RawUrl);
}

espero te ayude.