> A general question. Is it possible to interact with a browsers history. I > know we can prevent a page from being cached by a browser, but what I need > to know is if it is possible to access and delete a browser's history.
There's a history object in JavaScript: http://developer.netscape.com/docs/manuals/js/client/jsref/history.htm A common use is window.history.back() to go to the last visited page. You'd have to grab a good book (O'Reilly's Definitive Guide or the JavaScript Bible) for more detail on manipulating it. I kind of doubt that you'd be allowed to delete people's history entries willy-nilly though! - Gyrus ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - [EMAIL PROTECTED] work: http://www.tengai.co.uk play: http://www.norlonto.net - PGP key available ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ______________________________________________________________________ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation � $99/Month � Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

