Tuesday, April 14, 2020

How to get JavaScript variable in a JSP scriplet

<html>
<script>
   
function call()
   
{ var name = "Gautam";
        window
.location.replace("Demo2.jsp?name=" + name);
   
}
</script>
<input type="button" value="Get" onclick='call()'>
<%
   
String name = request.getParameter("name");
   
if (name != null)
   
{
       
out.println(name);
   
}
%>
</html> source: https://stackoverflow.com/questions/22922245/get-javascript-variable-value-in-jsp-scriptlet

No comments:

Post a Comment

Henry's law constant for CO 2 ​ in water is 1.67×10 ∘ Pa at 298 K . Calculate the quantity of CO 2 ​ in 500 mL , of soda water when packed under 2.5 atm CO 2 ​ pressure at 298 K .

  Explanation To calculate the amount of CO 2 ​ dissolved, we use Henry's Law: P = k H ​ × x _ C O 2 ​ where:\ P = partial pressure of...