hey thnx frnds 4 d answer but no output is displaying when i am pressing viewdetails button, i am giving my pages here plz have a look at it: -----index.jsp----- //In this page i have kept a search button which will search for the specific records from the database by a servlet. -----Search.java----- In this page i have passed the regn_no in the getParameter().
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html"); PrintWriter out = response.getWriter();
Connection con=null;
try
{
String driverclassname="sun.jdbc.odbc.JdbcOdbcDriver";
String url="jdbc:odbc:abc";
String username="john";
String password="john";
Class.forName(driverclassname);
con= DriverManager.getConnection(url,username,password);
Statement st=con.createStatement();
System.out.println("Connected to the database");
String regd_no=request.getParameter("regd_no");
String button=request.getParameter("submit");
if(button.equalsIgnoreCase("search"))
{
String s3=regd_no;
ArrayList al=null;
ArrayList emp_list =new ArrayList();
String query = "select regn_no, regn_dt from table1 where regn_no='"+s3+"'";
System.out.println("query " + query);
st = con.createStatement();
ResultSet rs = st.executeQuery(query);
if(rs.next()){
al = new ArrayList();
al.add(rs.getString(1));
al.add(rs.getString(2));
System.out.println("al :: "+al);
emp_list.add(al);
}
else {
String nextJSP = "/norecord.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
}
request.setAttribute("empList",emp_list);
System.out.println("empList " + emp_list);
String nextJSP = "/viewSearch.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
con.close();
System.out.println("Disconnected from database");
}
else if(button.equalsIgnoreCase("view"))
{
String s3=regd_no;
ArrayList al=null;
ArrayList emp_list =new ArrayList();
String query = "select * from table1 where regn_no='"+s3+"'";
System.out.println("query " + query);
st = con.createStatement();
ResultSet rs = st.executeQuery(query);
if(rs.next()){
al = new ArrayList();
al.add(rs.getString(1));
al.add(rs.getString(2));
al.add(rs.getString(3));
al.add(rs.getString(4));
al.add(rs.getString(5));
System.out.println("al :: "+al);
emp_list.add(al);
}
else {
String nextJSP = "/norecord1.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
}
request.setAttribute("empList",emp_list);
System.out.println("empList " + emp_list);
String nextJSP = "/viewSearch1.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
con.close();
System.out.println("Disconnected from database");
}
} catch (Exception e) {
e.printStackTrace();
}
processRequest(request, response);
}
}
-----------viewSearch.jsp------------ In this page the fetched data by search button is displayed and in this viewSearch.jsp page i have kept another button view when this view button will be clicked then all the columns of that regn_no will be displayed on viewSearch1.jsp page, i have written the code for that one in the same servlet page.
but after clicking the view button, no data is being displayed......plzzz help me frnds..