I need to send a particular parameters to Servlet from JSP page. E.g: if I click on the Facebook icon on the web page, then I should send "facebook" as parameter to my Servlet and my Servlet will respond according to the parameter received from JSP file or HTML file.
|
|
Just wrap the icon in a link with a query string like so
In the
See also: |
|||||||||||||
|
|
This is a very open ended question, but the easiest way is to specify parameters in a query string. If you have the following servlet: /mysite/messageServlet Then you can send it parameters using the query string like so: /mysite/messageServlet?param1=value1¶m2=value2 Within the servlet, you could check your
Storing links with multiple parameters in the querystring requires you to encode the URL for HTML because "
Note that the |
|||
|
|
|
One way is to have hidden form variables in your jsp page that get populated on click.
This gives you flexibility to control what gets passed to your servlet dynamically without having to embed urls in your href |
|||
|
|
