
Remove Links From "Back" Navigation
Hi,
Thanks for the info. However, I did a little digging and found the the
Explorer object has a Navigate method that allows you to remove a page from
the history. Unfortunately though, when I instantiate the object, I get an
error "Object not safe for scripting". Any experience using this object?
Here is the code I tried:
<script Language="VBScript">
Sub DeletePage(sPage)
Set x = CreateObject("InternetExplorer.Application")
x.Navigate, sPage, 2
End Sub
</script>
JIM
Quote:
> Sorry but you can't do that at this point in time. I don't think you
will
> be able to at all either. Doesn't leave a paper trail as the user would
> want.
> --
> _________
> CEO DigiTec Web Consultants
> Justin Rogers
> Personal Programmer and Web Consultant Home Page: Soon to come
> > Does anyone know how to remove a page from the history using VBScript?
I
> > display an "interim" page that loads another page, and I would like to
> > remove the interim page from the links so the user cannot go back to
it.
> > JIM