Hidden parameters

Hi,Can anyone give me an example of a JSP page where a form uses hidden parameters?Thanks ....
[115 byte] By [Jfrain2004] at [2007-9-30 19:04:39]
# 1
I use hidden parameters to store navigation and status info.Sometimes i also use it to avoid having to attach various variabeles to the url
pgeuens at 2007-7-6 23:14:15 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

hi,

hope this helps....

<form name="testfrm" method="post" action="">

<input type="hidden" name ="name" value="">

<input type="hidden" id="county" value="">

<input type="text" name="comment" size="15" onFocus="fnFocus()" onBlur="fnBlur()" >

</form>

sonianiwas at 2007-7-6 23:14:15 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...