I have a
JSP page. On that page I display hyper links. When the user clicks on a hyper link it must pass on parameter besides whatever the URL currently carries. If my current status of url is
http://localhost/MyApp/test?teststring=hello and I click on the hyperlink shown on this page it the url must be
http://localhost/MyApp/test?teststring=hello&urlstring=testing. which appends the parameter to the existing parameters
If I give the url href parameter as urlstring=testing my url becomes
http://localhost/MyApp/test?urlstring=testing and I am losing tghe other parameter. how can i achieve this ?
thank you