I have to pass a List from a .jsp into my servlet and I want to do it through a URL. Can I do something like -
<a href="SellSelectedStockServlet?value=content" target="_self">
where 'content' is a List. I want to get the elements of this list in my servlet.
Or I can only pass the individual parameters with a separation of '&'?