Javascript onclick Jsp call

Program:

Input.jsp

 

[html]<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Javadomain.in</title>
</head>
<body>
<button type="button" onClick="JavaScript:window.location=’MyJsp.jsp’">Click to call MyJsp Page!</button>
</body>
</html>[/html]

 

MyJsp.jsp

 

[html]<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Javadomain.in</title>
</head>
<body>
success…………!!!
</body>
</html>[/html]

 

Output:

click to call jsp

myjsp page output

Thanks for reading this post………….!!!

Leave a Reply