我想在onclick事件后执行ABC.jsp,这里是代码
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>
答案 0 :(得分:0)
<form action="abc.jsp">
<input type="submit" value="submit">
</form>