hi !
i have used javascript to move to next page . When i back my browser i always come on same page .i am also using data entry script. due to problem mentioned above records are entered again and again . please help me .
We'd need to see code to be able to help. However, if this problem is caused by javascript, then you're talking to the wrong group.
Louis
It sounds like a problem with Netscape and IE. I have written a small JS Function to combat this: function goBack(){ if (bName=="Microsoft Internet Explorer") { history.back(); } else { history.go(-2); } } If this is the problem it is because NS treats Server Side scripts as normal web pages. I hope this has helped!