묻고답하기

DB연동하여 아이디를 불러오는것인데 DB에 존재하는 아이디의 이름과 주민번호를 입력하여도

없는 것처럼 화면이 뜨네요.. 너무 어려워서 이곳에 질문남겨봅니다....

 

<아이디찾기 폼>

<%@ page contentType="text/html;charset=euc-kr" %><html><head>

<meta http-equiv="content-type" content="text/html; charset=euc-kr">

<meta name="generator" content="Namo WebEditor(Trial)"></head>

<body><form name="searchId" method="post" action="viaId.jsp">

<table width="720px"  border="0"  height="430px" align="center"   >   <tr>    <td>

     <table width="450px" align="center"  border="0" style="color:black; background-color: #F6F6F6; font-size:20px; ">

    <tr>    <td>     <table width="750px" align="center" border=0; style="background-color:white; margin-top:3%" >

      <tr>       <td>아이디 찾기</td>       <td><div id="sub-title"> |  회원정보에 등록한 정보로 아이디를 찾습니다.</td>

       <td style="width:300px"></td>      </tr>     </table>    </td>     </tr>    <tr>     <td>

   <table width="600px"  height="300px" align="center" border="0"  style=" background-color:none; border:dotted 5px none;">

    <tr>     <td>      <table width="400px"  border="0" style="margin-top:3%">       <tr>

        <td><div id="middle-title"> 이름과 핸드폰 번호를 입력해주세요.</div>

        </td>       </tr>      </table>     </td>    </tr>    <tr>     <td>

      <table width="380px" align="center" border="0" style="font-size:19px" >

       <tr>        <td>이름</td> <td><input type=text name="name"></td>

       </tr>       <tr> <td>주민등록번호 </td> <td>

<input type=text name=joomin1 size=6> -<input type=text name=joomin2 size=7>

</td> </tr>      </table>     </td>    </tr>    <tr>     <td>

      <table width="150px"  align="center" border="0" style="margin-top:-10%">

       <tr>

        <td><input type="submit" name="search" value="찾기" class="btn btn-primary">

         <input type="button" name="cancel" value="취소" class="btn btn-primary" onclick="location.href='index.jsp'"></td>

       </tr>      </table>     </td>    </tr>  </table> </td></tr></table></td></table></form>

</body></html>

 

(아이디찾기결과.jsp)

<%@ page contentType="text/html;charset=euc-kr" %>

<%@ page import="java.sql.*" %>

 

<html>

<head>

<meta http-equiv="content-type" content="text/html; charset=euc-kr">

<title>아이디찾기   </title>

 

 <style type="text/css">

     a:link { text-decoration: none; color: black; }           <!-- 클릭하기전의 설정은 선없고 검정색 -->

     a:visited { text-decoration: none; color: black; }     <!-- 방문한뒤의 설정은 밑줄없고 검정 -->

     a:hover { text-decoration: underline; color:blue; } <!-- 마우스가 올라갈때 설정은 아랫줄있고 파랑 -->

 </style>

 

</head>

 

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">

 

<%

try {

  String DB_URL="jdbc:mysql://localhost:3306/project";   //  DB명이 project임에 주의!(모든 소스코드 확인!)

     String DB_ID="multi"; 

     String DB_PASSWORD="abcd";

   

Class.forName("org.gjt.mm.mysql.Driver");  

  Connection con = DriverManager.getConnection(DB_URL, DB_ID, DB_PASSWORD); 

request.setCharacterEncoding("euc-kr");

 

    String name = request.getParameter("name");            //  로그인폼(login.jsp)에서 입력한 ID를 넘겨받음

    String joomin1 = request.getParameter("joomin1");

String joomin2 = request.getParameter("joomin2");

String joomin = joomin1 + "-" + joomin2; //  로그인폼(login.jsp)에서 입력한 PW를 넘겨받음

 

     //  로그인폼(login.jsp)에서 입력한 ID를 포함한 레코드를 member 테이블에서 조회함

    String jsql = "select  memId  from member where memName = ? and memJoomin = ?"; 

    PreparedStatement pstmt = con.prepareStatement(jsql);

    pstmt.setString(1, name);

pstmt.setString(2, joomin);

 

    ResultSet rs = pstmt.executeQuery(); 

 

    if(rs.next()){

        {

}   

         

} else {  

%>

      <br><br><br>

  <center>

      <font color=red size=6><b><아이디 찾기 오류!></b></font><p><br><br>

      <font color=black size=2>

            입력하신정보가 잘못 되었습니다.  다시 확인해 주세요!<p>

이전 페이지로 돌아가시려면 

<a href="Serchid.jsp" ><font color=red>이전단계</font></a>를 클릭하시고, <p>

회원가입 페이지로 가시려면 

<a href="insertmember.jsp" ><font color=red>회원가입</font></a>를 클릭하세요!

</font>              

</center>

<%

    } }

catch (Exception e) {

    out.println(e);

}

%>

</body>

</html>

태그 연관 글
  1. [2016/12/21] 묻고답하기 고수님들 제발 도와주세요. 창크기에 따라서 위젯 위치가 자꾸 변합니다 by 립샤 *1
  2. [2015/07/08] 묻고답하기 박스모듈에 이미지삽입 by naomiblack
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
달려라흰둥아 게시판에 글쓰면 작은 프레임이 생겨요.. [1] file 2019.04.25 by LuisK
별빛 코어 업데이트 하면, 수정한 코드를 다시 수정해야 하나요? [4] 2019.04.25 by 별빛
이효선 로그인이 계속 안되니.. 답답해 죽겠어요.. [1] 2019.04.25 by sejin7940
rrryyy3 스샷 첨부했습니다. 모바일뷰 초기화면이 계속 나옵니다 ㅠㅠ file  
손주사랑 글씨가깨져서요 알려주시면 고맙겠습니다 [4] file 2019.04.24 by 손주사랑
eptmtk**** 스케치북 게시판에서 유튜브 링크를 쓰면 홈페이지가 깨집니다... [1] file 2019.04.24 by DoorWeb
햇빛소년 게시글 작성시 동영상, 이미지 링크를 모방일 PC 분리해서 연결하는 법. [2] 2019.04.23 by 햇빛소년
paraduxx 특정 게시물을 특정 회원만 확인 하게 하는 방법이 있을까요 ? [1] 2019.04.23 by paraduxx
별빛 파일업로드 크기 25MB 이상 올리는 방법을 알고 싶습니다. [4] 2019.04.23 by 별빛
kminict 다국어로 설정된 리스트 삭제 방법 [2] file 2019.04.23 by kminict
익명89 1.11.5 업데이트 문제...? [3] file 2019.04.22 by 익명89
차이나로 메인 메뉴 클릭시 메인화면으로만 이동합니다. [5] 2019.04.21 by 디자인클립
WhiteRose SOS.. Fatal error object/Object.class.php 관련 [2] 2019.04.20 by WhiteRose
kminict 게시판 파일 업로드 실패 [3] 2019.04.19 by Happiness
아이고아낙네요 사이트 메뉴 사라짐 ㅠ,ㅠ [1] file 2019.04.19 by AimJin
KanTa 누리고 EPAY 모듈정보 설정 질문 드립니다. [1] file 2019.04.19 by 이온디
서리 글보기, 답글에서 게시물 변수를 각기 다르게 불러오는 오류?  
kminict 게시판 첨부파일 업로드 경로 질문 [4] 2019.04.18 by kminict
서리 때려 죽여도 특정 모듈에서 모바일 레이아웃이 적용이 안됩니다. OTL  
PAIN 포인트랭킹 위젯  
예진JEvans 제발 부탁드립니다. contact us 이메일 주소값 오류가 왜 나는지 모르겠습니다 [3] 2019.04.16 by framei
에스엠과호돌 Fatal error: Call to a member function getNextPage() on a non-object in 에러... [1] 2019.04.16 by SimpleCode
동혀니 AJAX 에러 file  
rail_man 게시판에서 "이게사물을" 삭제하고자 합니다. [2] file 2019.04.15 by rail_man
홈런볼11 특정 회원에게 회원 관리 위임 [1] 2019.04.15 by SimpleCode
초보개 sql 쿼리 질문  
흑묘백묘 이미지프로세스 자료실 페이지 캡쳐해서 좀 올려주세요^^ [2] file 2019.04.12 by 흑묘백묘
두발잔차 관리자에서 코어 업데이트 및 각 설정이 저장 안됩니다. [2] 2019.04.12 by 두발잔차
rail_man files 권한이 755로 되어 있습니다. [1] 2019.04.12 by SimpleCode
kminict 호스팅 없이 개인서버로 설치가 가능한가요? [2] 2019.04.12 by kminict