Hi Ravi,
Thanx for the reply.I solved this problem with JSP.I have not tried with servlet as
being said
by u.
Now I have got one more problem.I have 2 text fields,they r Name and Phone.There r 2
buttons,they r ADD and FIND .Add is to add record and Find is to find out the reord
after
giving the primary key in user input.Add button works fine.But with FIND button there r
some problems.My conditions are
1.)In FIND button after typing name in Name text field the phone shoud be displayed
in the
Phone textfield.
2.)The phone text field can be edited.
Appreciated for the reply.
Biren
> ** Original Subject: Re: A Problem with JSP.
> ** Original Sender: ravi varanasi <[EMAIL PROTECTED]>
> ** Original Date: Thu, 11 May 2000 10:54:25 -0700
> ** Original Message follows...
>
> Hi,
> I am not sure whether this will solve ur problem. But, I have solved
> similar problem using servlets instead of Jsp (instead of add2.jsp, I was
> using a servlet). Have a service method defined in the serlvet along with
> the doGet and doPost methods defined for the req functionality. Set the
> method = get or post using script( as u did). When the servlet is invoked,
> the service method first gets invoked which will inturn call either doGet or
> dopost depending the method type. So, service method acts as a router. For
> more info, read Servlet API.
> Hope this will work with Jsp as Jsp is an extension of Servlets.
>
> bye,
>
> -----Original Message-----From: A mailing list about Java Server Pages specification
>and
reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Biren Patnaik
> Sent: Thursday, May 11, 2000 1:25 AM
> To: [EMAIL PROTECTED]
> Subject: A Problem with JSP.
>
>
> Hi All,
> I have got one problem with JSP.My problem is how to use GET and POST
> method simultaneously in a JSP program.I have 2 buttons,one is ADD to
> insert record in to the database,and other is FIND to locate the record in
> the database by giving keyfield.I m using JSP and BEANS.For ADD i have to
> use POST,and for FIND I have to use GET.How can i solve this problem.I
> tried to solve it in different ways.One is to use Javascript,but that did
> not work.I do not know how to solve it using only JSP.I m sending my codes
> for the discussion amongest ourselves.I will be grateful to u,If u can
> send me after going through my codes carefully.
> Looking forwards to getting reply from u at the earliest.
> Thanx
>
> The codes without javascript is(solely on JSP)
>
> AddMain.jsp
>
> <html>
> <head>
> <title>
> Data Entry Screen
> </title>
> </head>
> <body>
>
> <%@ page language="java" %>
>
> Data Entery:
>
> <form method="POST" action="Add2.jsp">
>
> Enter Name:
>
> <p>
>
> <input type=text name=inputSQL1 size=10>
>
> <p>
>
> Enter Phone:
>
> <p>
>
> <input type=text name=inputSQL2 size=10>
>
> <p>
>
>
> <input type="submit" name="action" value="add">
> <input type="submit" name="action" value="del">
> <input type="submit" name="action" value="mod">
> </form>
> </body>
> </html>
>
> Add2.jsp is
>
> <html>
> <head>
> <title>
> Database Search
> </title>
> </head>
> <body>
>
> <%@ page language="java" import="java.sql.*" %>
>
>
> <jsp:useBean id="db" scope="request" class="com.wrox.jspexamples.Bean1" />
>
> <jsp:setProperty name="db" property="*" />
>
> <%! int numColumns;
>
> %>
>
> <center>
> <%
> String sql1 = request.getParameter("inputSQL1");
> String sql2 = request.getParameter("inputSQL2");
> String bT = request.getParameter("action");
>
>
> try {
> db.connect();
> } catch (ClassNotFoundException e1) {
> throw new ServletException("Database drivers not available", e1);
> } catch (SQLException e2) {
> throw new ServletException("Database URL is wrong", e2);
> }
>
> if(bT.trim().equals("add"))
> {
>
> try {
> db.insert(sql1,sql2);
>
> } catch (SQLException e3) {
> throw new ServletException("Your query isn't working. " +
> "Do you want to browse the database? " +
> "If so, leave the SQL input empty", e3);
> }
>
> }
>
> if(bT.trim().equals("del"))
> {
>
> try {
> db.delete(sql1);
>
> } catch (SQLException e4) {
> throw new ServletException("Your query isn't working. " +
> "Do you want to browse the database? " +
> "If so, leave the SQL input empty", e4);
> }
>
> }
>
> if(bT.trim().equals("mod"))
> {
>
> try {
> db.update(sql1,sql2);
>
> } catch (SQLException e5) {
> throw new ServletException("Your query isn't working. " +
> "Do you want to browse the database? " +
> "If so, leave the SQL input empty", e5);
> }
>
> }
>
> try {
>
> db.close();
> } catch (SQLException e5) {
> throw new ServletException("Database error. The query worked, " +
> "but the display didn't", e5);
> }
>
>
> %>
>
> </center>
> </body>
> </html>
>
> Bean1.java is
> package com.wrox.jspexamples;
>
> import java.sql.*;
> import java.io.*;
>
> public class Bean1 {
>
> String dbURL;
>
> Statement s;
>
> private Connection dbCon;
>
> public Bean1() {
> super();
> }
>
> public boolean connect() throws ClassNotFoundException, SQLException {
> Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
> dbCon =
> DriverManager.getConnection("jdbc:odbc:prjct1","scott","tiger");
> return true;
> }
>
> public void close() throws SQLException {
> dbCon.close();
> }
>
>
>
> public void insert(String sq1,String sq2) throws SQLException {
>
> s = dbCon.createStatement();
> s.executeUpdate("INSERT INTO EMP1 VALUES('" + sq1 +
> "','" + sq2 + "')");
> }
>
> public void delete(String sq3) throws SQLException {
>
> s = dbCon.createStatement();
> s.executeUpdate("DELETE FROM EMP1 WHERE NAME = '" +sq3+ "'");
> }
>
> public void update(String sq4,String sq5) throws SQLException {
>
> s = dbCon.createStatement();
> s.executeUpdate("UPDATE EMP1 SET PHONE = '" + sq5 +"' WHERE NAME =
> '" +sq4+ "'");
> }
>
>
> public int getDbDriver() {
> return 0;
> }
>
> public void setDbDriver(String newValue) {
>
> }
>
>
> }
> with javascript is(Addmain.jsp)
> <html>
> <head>
> <title>
> Data Entry Screen
> </title>
>
> <script language="javascript">
>
> function fun1()
> {
> document.frm[0].method="POST"
> return false
> }
>
> function fun2()
> {
> document.frm.method="GET"
> return false
> }
>
> </script>
>
> </head>
> <body>
> Data Entery:
> <form name="frm" action="http://147.0.1.41:8080/examples/jsp/Add2.jsp">
>
> Enter Name:
>
> <p>
> <input type=text name=inputSQL1 size=10>
>
> <p>
> Enter Phone:
>
> <p>
>
> <input type=text name=inputSQL2 size=10>
>
> <p>
>
> <input type="submit" name="action" value="add" onclick="fun1()">
> <input type="submit" name="action" value="del" onclick="fun1()">
> <input type="submit" name="action" value="mod" onclick="fun1()">
> <input type="submit" name="action" value="find" onclick="fun2()">
> </form>
> </body>
> </html>
>
>
==============================================================
=============
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
> http://java.sun.com/products/jsp/faq.html
> http://www.esperanto.org.nz/jsp/jspfaq.html
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
==============================================================
=============
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
> http://java.sun.com/products/jsp/faq.html
> http://www.esperanto.org.nz/jsp/jspfaq.html
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>** --------- End Original Message ----------- **
>
Download NeoPlanet at http://www.neoplanet.com
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets