Code:
<head>
<script type="text/javascript">
function g() {
var q=s1;
document.getElementById("txt").value=q;
document.getElementById("lbl").value=s1;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
String s1=(session.getAttribute("abc")).toString();
out.print("<h1>The source from test2.jsp is as follows:</h1>");
out.print("The value of s from test2.jsp: "+s1);
%>
<div >
<input type="button" id="btn" onclick="g()" value="Load"/>
<input type="text" id="txt">
<label id="lbl"></label>
</div>
</body>
Comment