knu project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
750 B

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function HttpUpdate(Type){
dform.updateType.value=Type;
dform.submit();
}
</script>
</head>
<body>
<form name="dform" action="/servlet/kr.co.kihyun.beans.batch.HttpUpdate" method="post">
<input type="button" value="사용자정보업데이트" onclick="javascript:HttpUpdate('U');"><br>
<input type="button" value="부서정보업데이트" onclick="javascript:HttpUpdate('D');">
<input type="text" name="updateType">
</form>
<%
String say = "Hello World!";
out.println(say);
%>
</body>
</html>