Refreshing a page

I'm developing a web application using servlets and jsp. I want to refresh a page, but instead of using the browser's refresh button I want the user to click in a link that does the same thing. But another requirement is that I cannot use JavaScript.

I thought of putting a button and do a submit to my servlet with all the parameters, but the thing is that this button should be in a GET form and the page that I want to refresh has a POST form. Can I have a GET form inside a POST form?

Any idea would be of help

Thanks

[550 byte] By [DesarrolloScreenNamea] at [2007-10-2 23:50:29]
# 1
Yes, put a reference to the jsp in a hyperlink including all the parameters needed to generate the same output, that will cause a GET request without the need to submit a form. If you want to display a button, use an image.
gimbal2a at 2007-7-14 16:35:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...