Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/10/2004, 09:30
Avatar de RootK
RootK
Moderador
 
Fecha de Ingreso: febrero-2002
Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 22 años, 3 meses
Puntos: 50
Aqui te va otra alternativa..:

Carga en tu página donde haces tu redirect un html button.. así:

Cita:
<INPUT type="button" runat="server" id="btnHistory" value="Button">
Y en tu codebehind, recibes la página de donde viene y le asignas el atributo..

Ejemplo..

Cita:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
btnHistory.Attributes.Add("onclick", "javascript:location.href='" & Request.UrlReferrer.ToString & "'")

End If
End Sub
Y listo.. con hace haces el redirect.. y por lo tanto un reload de la page..

Espero ahora si te funcione..