index.jsp

카테고리 없음 2011. 5. 31. 09:27 Posted by Request

<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script language="javascript">
 ListGo = function(){
  if(confirm("이동하시겠습니까?")){
   location.href='EMPView.jsp';
  }
 }
 ListSubmitGO = function(){
  var f = document.form1;
  
  if(confirm("이동??????")){
   f.action="EMPView.jsp";
   f.submit();
  }
 }
</script>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>

<input type="button" Value="emp게시판가기" Onclick="location.href='./EMPView.jsp'" Style="cursor:hand">
<input type="button" Value="emp게시판가기" Onclick="ListGo()" Style="cursor:hand">
<input type="button" Value="emp게시판가기" Onclick="ListSubmitGO()" Style="cursor:hand">

 

<form name="form1" method="POST">
 <input type="hidden" Name="code" Value="EMP">
 <input type="hidden" Name="title" value="ABCDEF">
</form>


</body>
</html>