Basic question: how to redirect to a JSP page without using JavaScript?

Hello, all!I have a button on a jsp page. How to redirect to another page in the same web application when a click on the button is performed without using JavaScript, just JSP?Thank you.Marcos
[221 byte] By [Marcos_AntonioPSa] at [2007-11-27 9:08:35]
# 1
http://www.mountaindragon.com/html/redirect.htm
hunter9000a at 2007-7-12 21:47:01 > top of Java-index,Java Essentials,Java Programming...
# 2
Thank you, hunter9000 Marcos> http://www.mountaindragon.com/html/redirect.htm
Marcos_AntonioPSa at 2007-7-12 21:47:01 > top of Java-index,Java Essentials,Java Programming...
# 3

Button clicking does not happen during the execution of a JSP. This seems to be an all too common misunderstanding. A JSP generates HTML which can contain variable data. Then the HTML is passed to the browser and the JSP execution is finished. That HTML may specify buttons, either as links or form submit buttons, which generate a new transaction, which in turn may result in the execution of another JSP.

malcolmmca at 2007-7-12 21:47:01 > top of Java-index,Java Essentials,Java Programming...