enielsen
June 23rd, 2009, 06:11 PM
I have a pretty simple VB program (2008) that essentially works like an informational Kiosk. It has a few buttons to navigate to certain web pages. But I need to be able to protect the information that has been submitted to previous web pages so that another user can not find out that information.
How can I disable the ability for a user to navigate back in the web browser?
My code is basically just on-click events:
Private Sub btnSL_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSL.Click
wbUCF.Navigate("http://regionalcampuses.ucf.edu/locations/south_lake/index.asp")
End Sub
Your help is greatly appreciated
How can I disable the ability for a user to navigate back in the web browser?
My code is basically just on-click events:
Private Sub btnSL_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSL.Click
wbUCF.Navigate("http://regionalcampuses.ucf.edu/locations/south_lake/index.asp")
End Sub
Your help is greatly appreciated