I want to disable the Browser Back Button and provide another link which will perform the same f

Hi, I want to disable the browser back button and provide another link to perform the same function. Is there any way of doing it other that history.forward(1) as both (the link and browser back button) are not working simultaneously when i use that.
[251 byte] By [whitesnk] at [2008-1-10]
# 1

Move the thread from Visual Basic IDE forum. This forum discuss VB.NET IDE IntelliSense, debugging, ErrorCorrect, ClickOnce deployment, Refactor?, code snippets, colorization, smart tags, key bindings, etc. You question is Off-Topic in VB IDE forum.

There are more exports on IE development in Internet Explorer Web Development forums. I believe you can get the satisfying answers in this forum.

Thanks again for your question.

BrunoYu-MSFT at 2007-10-3 > top of Msdn Tech,Internet Explorer Development,Internet Explorer Web Development...
# 2

Hi,

Use server side code to maintain navigation history crumbs and the current page uri. When a user uses the browser back button (or a button on your web page) your server code will detect the refererrer, which will equal the current page (== the last page displayed to the user). From that you can add logic to redirect the response to the page that you want.

The Browser back button display is controled by group policy/registry entries. I accessible from web pages.

Regards.

IECUSTOMIZER at 2007-10-3 > top of Msdn Tech,Internet Explorer Development,Internet Explorer Web Development...