Seemingly some java script expert is needed to resolve ur issue


>From: Manish Joshi <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>     reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Form Submission to new window
>Date: Sat, 20 Jan 2001 12:01:08 +0530
>MIME-Version: 1.0
>X-Originating-IP: [203.129.237.91]
>Received: from [204.160.241.38] by hotmail.com (3.2) with ESMTP id
>MHotMailBC327B090065400431D8CCA0F1268BDD0; Fri Jan 19 22:28:31 2001
>Received: from mail (mail.javasoft.com [204.160.241.28])by
>mail2.java.sun.com (8.10.0.Beta13+Sun/8.10.0.Beta13) with ESMTP id
>f0K6Spg20981;Fri, 19 Jan 2001 22:28:52 -0800 (PST)
>Received: from JAVA.SUN.COM by JAVA.SUN.COM (LISTSERV-TCP/IP release 1.8d)
>with          spool id 3607405 for [EMAIL PROTECTED]; Fri, 19 Jan
>2001          22:30:28 -0800
>Received: from hotmail.com ([216.32.180.25]) by mail.java.sun.com
>(8.10.0.Beta13+Sun/8.10.2) with ESMTP id f0K6URK06157 for
><[EMAIL PROTECTED]>; Fri, 19 Jan 2001 22:30:27 -0800 (PST)
>Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
>Fri,          19 Jan 2001 22:28:08 -0800
>From [EMAIL PROTECTED] Fri Jan 19 22:28:51 2001
>References:
><[EMAIL PROTECTED]>
><00cf01c08298$ec3a7db0$[EMAIL PROTECTED]>
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Mailer: Microsoft Outlook Express 5.00.2314.1300
>X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300
>X-OriginalArrivalTime: 20 Jan 2001 06:28:08.0678 (UTC)
>  FILETIME=[27994060:01C082AA]
>Message-ID:  <[EMAIL PROTECTED]>
>Sender: A mailing list about Java Server Pages specification and
>   reference <[EMAIL PROTECTED]>
>
>Hi all,
>just stuck here.i want to open a newwindow frm parent window and submit
>form
>of parent to new window how to do this?
>any brains.......?
>thx
>MJ
>
>----- Original Message -----
>From: kishore <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Saturday, January 20, 2001 9:54 AM
>Subject: Re: Fetching Data from Bean
>
>
> > try this way ...
> >
> > <table>
> > <tr > <!-- // let  name and address in tabular form  -->
> > <td> name </td>
> > <td> address</td>
> > </tr>
> > <%
> > try {
> > //
> >  Connection c =
>DriverManager.getConnection("jdbc:odbc:TABLE","usr","pwd");
> >  Statement s = c.createStatement();
> >  ResultSet r = s.executeQuery("select name , address  from usertable
>where
> > username = '"+loginBean.getUsername()+"'");
> >         while( r.next())
> >
> >
> > %>
> > <tr>
> > <td> <%= r.getString("name") %> </td>
> > <td> <%= r.getString("address") %> </td>
> > <tr>
> > <%
> >           }
> >         r.close();
> >        s.close();
> >
> >    }catch(SQLException e){
> >           System.out.println("SQLException thrown @ xyz.jso");
> >         }catch(ClassNotFoundException ee){
> >           System.out.println("sun.jdbc.odbc.JdbcOdbcDriver class not
>fount
> > 2 xyz.jsp ");
> >          }
> > %>
> > </table>
> > ----- Original Message -----
> > From: Puneet Kathuria, Gurgaon <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, January 19, 2001 9:58 PM
> > Subject: Fetching Data from Bean
> >
> >
> > > Hello All:
> > >
> > > I have a jsp page that displays data in tabular format.
> > > I have written a bean that performs the database queries & creates a
>long
> > > string (html) and it's returned back to display on the page.
> > >
> > > Can i bring the whole resultset in any form to jsp page & then display
> > > (maybe as arrays)
> > >
> > > Any suggestions as to how / in what form to bring data to jsp page
>apart
> > > from the strategy am following ?
> > >
> > > regards
> > >
> > >
> >
>===========================================================================
> > > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST".
> > > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> > DIGEST".
> > > 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
> >
> >
> > _________________________________________________________
> > Do You Yahoo!?
> > Get your free @yahoo.com address at http://mail.yahoo.com
> >
> >
>===========================================================================
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
> > 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".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>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

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
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

Reply via email to