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..