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

