Validate a Date in JSP
I am trying to Validate a Date entered by the user in JSP. the code that I already have has a checkform function where I am not able to put my piece of java code.
My question is,
1. Where can I place my Java code that return a boolean in the JSP
2. How do I retrieve this boolean value to use it in my JSP?
3. What does <% %> tag mean?, what is teh scope of this tag?
4. When I declare an object/variable in the tag in number 3, can I use it in the Checkform function?
Thanks,
PS: I would appreciate any examples too.

