I have multiple of these hyperlinks in the page, and they are different only in the parameters:
http://localhost:7001/ple/
http://localhost:7001/ple/
http://localhost:7001/ple/
How do you set the value for each parameter? For example, I set appId to 1236 if the 3rd link is clicked.
And how to use POST in <html:form>?
Can you be more specific? Is there a JavaScript method that I need to call?
Main Topics
Browse All Topics





by: melchkishorePosted on 2008-08-12 at 04:41:49ID: 22211872
put the values as hidden variables
like
<input type="hidden" name= "action" value="something">
<input type="hidden" name="appId" value="1234">
and in <html:form> only use POST.
let me know if any concerns.