I am pretty much new to JSP and wanted to understand the possibility of doing the below functionality in JSP.
- Submit a form with a text box to a JSP page
- When the JSP page loads, it should use the value from textbox and in turn should send another HTTP request to another URL and get back HTML response.
- This response should be rendered on the same JSP page.
Would it be possible to do this in plain JSP without using Servlets? Any suggestions would greatly help.
Thanks in advance