Posted By:
Anonymous
Posted On:
Tuesday, April 16, 2002 04:01 AM
You could add some unique parameter to each one on the same page
link1
link1
Then in test page
String whichPage = (String)request.getParameter("x");
if(whichPage==null) whichPage="";
You can then determine which page the request came from
Eoin