Я хотел бы выполнить ABC.jsp после события onclick, вот код
ABC.jsp
<%@ page import = "java.sql.*"%>
<%..........some jsp code%>
<html>
<head>
<body>
<%
.........jsp code
%>
<input type = "button" value = "submit" onclick = "abc.jsp"/>
</body>
</head>
I want the jsp to execute after i click on submit butnothing happens when i click submit
</html>