I have one JSP file as jsp 1.jsp and another JSP file as jsp 2.jsp
I've included jsp 2.jsp in jsp 1.jsp using <%@include file="jsp 2.jsp" %>
Now I need a click event on some element. And on that event I want to transfer a string variable to included jsp.
Lets say I have a list and on click of it I want to transfer the name of the list to another JSP,
And in another JSP I am trying to use that string to carry out some task.
And I am doing all these without any servlet. challenging one!! I have google'd a lot, but didnt find anything.