Monday, February 3, 2014

Response.Redirect Page with Complete request vb.net


Public Shared Sub RedirectPage(url As String)


Dim myresponse As HttpResponse = HttpContext.Current.Response

myresponse.Redirect(url,
False)

System.Web.
HttpContext.Current.ApplicationInstance.CompleteRequest()


End Sub

No comments:

Post a Comment