Y yasin Apr 20, 2006 #1 is it possible that pressing "previous page"(back) button of web browser by code ?
K Karl Seguin [MVP] Apr 20, 2006 #2 You can do this in javascript using history.go(-1); or history.back(); to do it in .net, you'd need to store a the lastPage a user is on in a session, update it in the unload event, and use that in a response.redirect.. Karl
You can do this in javascript using history.go(-1); or history.back(); to do it in .net, you'd need to store a the lastPage a user is on in a session, update it in the unload event, and use that in a response.redirect.. Karl