Hi,
On my
JSP page I have a table that displays previous purchases (that are stored in an array list). Next to each purchase there is a "Remove" link. This link forwards to an initialising action class with the parameter ?Remove=<index>.
The item is then removed from the array list and the JSP is redisplayed.
This is all very well - the problem come in if you have removed an item from the list, come back to the JSP page and hit "Refresh". If you hit refresh another item is removed (from the same index as previously specified). How do I stop this happening??
Thanks,
Julia