Monday, April 13, 2020

Accessing JavaScript variable in JSP and vice-versa


Pass value from javascript to Jsp scriplet:

h.jsp:

<script>
function get(){
var m="Hello";
window.location.replace("h.jsp?mess="+m);
}
</script>
<input type="button" onclick="get();" value="click">
<%String message=request.getParameter("mess");
out.println(message);
%

source:https://www.javatpoint.com/q/5474/can-we-access-javascript-variable-in-jsp-and-vice-versa

No comments:

Post a Comment

Is the number of all INTO functions from the set {1, 2, 3, ..... n} to itself equal to all number of MANY to ONE fuctions?

Yes,  t he number of all into functions from the set {1, 2, 3, .... n} to itself is exactly equal to the number of many-to-one functions ...