JSP problem

2002-07-29 Thread Gopinath d

hi all,


pl have a look at the code given below.

The Current Session id is: <%= session.getId()%>
<%
 out.println("Click me");
 session.setAttribute("uname","ABC");
 out.println(session.getAttribute("uname"));
%>

//End of the program


If i execute the program, it displays an error message stating that

E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method 
setAttribute(java.lang.String, java.lang.String) not found in interface 
javax.servlet.http.HttpSession.
   session.setAttribute("uname","ABC");
   ^
E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method 
getAttribute(java.lang.String) not found in interface javax.servlet.http.HttpSession.
   out.println(session.getAttribute("uname"));
   ^
2 errors

what may be the reason?

Thanks in advance.

Regards,
Gopi

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread Shankar

Hello,

Your code works fine.
I guess it is the class path problem.

Shankar

Gopinath d schrieb:

> hi all,
>
> pl have a look at the code given below.
>
> The Current Session id is: <%= session.getId()%>
> <%
>  out.println("Click me");
>  session.setAttribute("uname","ABC");
>  out.println(session.getAttribute("uname"));
> %>
>
> //End of the program
>
> If i execute the program, it displays an error message stating that
>
> E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method 
>setAttribute(java.lang.String, java.lang.String) not found in interface 
>javax.servlet.http.HttpSession.
>session.setAttribute("uname","ABC");
>^
> E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method 
>getAttribute(java.lang.String) not found in interface javax.servlet.http.HttpSession.
>out.println(session.getAttribute("uname"));
>^
> 2 errors
>
> what may be the reason?
>
> Thanks in advance.
>
> Regards,
> Gopi
>
> ===
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread Sivakumar Samiappan

Hi,

 I think the problem might be the version of JSP ur web container supports. Just 
replace session.setAttribute("uname","ABC") by session.setValue("uname","ABC") and try 
it.

- Siva

-
   Sivakumar.S
   Deutsche Bank AG, APHO,Singapore.
   IT-Ecommerce/EBPP-Coc.
   64238727 (O) 62748124 (R) 90516364 (Mobile).



  rdgopinath@REDIFF
  MAIL.COM To:   [EMAIL PROTECTED]
  Sent by: cc:
  JSP-INTEREST@JAVASubject:  JSP problem
  .SUN.COM


  29/07/2002 15:30
  Please respond to
  JSP-INTEREST






hi all,


pl have a look at the code given below.

The Current Session id is: <%= session.getId()%>
<%
 out.println("Click me");
 session.setAttribute("uname","ABC");
 out.println(session.getAttribute("uname"));
%>

//End of the program


If i execute the program, it displays an error message stating that

E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method 
setAttribute(java.lang.String, java.lang.String) not found in interface 
javax.servlet.http.HttpSession.
   session.setAttribute("uname","ABC");
   ^
E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method 
getAttribute(java.lang.String) not found in interface javax.servlet.http.HttpSession.
   out.println(session.getAttribute("uname"));
   ^
2 errors

what may be the reason?

Thanks in advance.

Regards,
Gopi

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com




--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread Francisco Manuel Martínez Suárez

Perhaps you are usuing a HttpSession class which doesn´t have these method
yet, I mean, setAttribute and getAttribute are substitutes to setValue and
getValue (these two are deprecated).

Fran


> -Mensaje original-
> De:   Shankar [SMTP:[EMAIL PROTECTED]]
> Enviado el:   lunes 29 de julio de 2002 9:06
> Para: [EMAIL PROTECTED]
> Asunto:   Re: JSP problem
> 
> Hello,
> 
> Your code works fine.
> I guess it is the class path problem.
> 
> Shankar
> 
> Gopinath d schrieb:
> 
> > hi all,
> >
> > pl have a look at the code given below.
> >
> > The Current Session id is: <%= session.getId()%>
> > <%
> >  out.println("Click me");
> >  session.setAttribute("uname","ABC");
> >  out.println(session.getAttribute("uname"));
> > %>
> >
> > //End of the program
> >
> > If i execute the program, it displays an error message stating that
> >
> > E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method
> setAttribute(java.lang.String, java.lang.String) not found in interface
> javax.servlet.http.HttpSession.
> >session.setAttribute("uname","ABC");
> >^
> > E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method
> getAttribute(java.lang.String) not found in interface
> javax.servlet.http.HttpSession.
> >out.println(session.getAttribute("uname"));
> >^
> > 2 errors
> >
> > what may be the reason?
> >
> > Thanks in advance.
> >
> > Regards,
> > Gopi
> >
> >
> ==
> =
> > 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://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread EswarChandu Nalluri

That is the problem. It will work fine if he replace with getValue and
putValue..

-Original Message-
From: Sivakumar Samiappan [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 1:39 PM
To: [EMAIL PROTECTED]
Subject: Re: JSP problem


Hi,

 I think the problem might be the version of JSP ur web container supports.
Just replace session.setAttribute("uname","ABC") by
session.setValue("uname","ABC") and try it.

- Siva

-
   Sivakumar.S
   Deutsche Bank AG, APHO,Singapore.
   IT-Ecommerce/EBPP-Coc.
   64238727 (O) 62748124 (R) 90516364 (Mobile).



  rdgopinath@REDIFF
  MAIL.COM To:
[EMAIL PROTECTED]
  Sent by: cc:
  JSP-INTEREST@JAVASubject:  JSP problem
  .SUN.COM


  29/07/2002 15:30
  Please respond to
  JSP-INTEREST






hi all,


pl have a look at the code given below.

The Current Session id is: <%= session.getId()%>
<%
 out.println("Click me");
 session.setAttribute("uname","ABC");
 out.println(session.getAttribute("uname"));
%>

//End of the program


If i execute the program, it displays an error message stating that

E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method
setAttribute(java.lang.String, java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   session.setAttribute("uname","ABC");
   ^
E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method
getAttribute(java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   out.println(session.getAttribute("uname"));
   ^
2 errors

what may be the reason?

Thanks in advance.

Regards,
Gopi

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com




--

This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread Vikramjit Singh

you might be using servlet2.2.jar. Upgrade that to servlet2.3.jar and your
code shall work fine.

Regards,
Vikramjit Singh,
Systems Engineer,
GTL Ltd.
Ph. 7612929-1059


-Original Message-
From: Sivakumar Samiappan [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 1:09 AM
To: [EMAIL PROTECTED]
Subject: Re: JSP problem


Hi,

 I think the problem might be the version of JSP ur web container supports.
Just replace session.setAttribute("uname","ABC") by
session.setValue("uname","ABC") and try it.

- Siva

-
   Sivakumar.S
   Deutsche Bank AG, APHO,Singapore.
   IT-Ecommerce/EBPP-Coc.
   64238727 (O) 62748124 (R) 90516364 (Mobile).



  rdgopinath@REDIFF
  MAIL.COM To:
[EMAIL PROTECTED]
  Sent by: cc:
  JSP-INTEREST@JAVASubject:  JSP problem
  .SUN.COM


  29/07/2002 15:30
  Please respond to
  JSP-INTEREST






hi all,


pl have a look at the code given below.

The Current Session id is: <%= session.getId()%>
<%
 out.println("Click me");
 session.setAttribute("uname","ABC");
 out.println(session.getAttribute("uname"));
%>

//End of the program


If i execute the program, it displays an error message stating that

E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method
setAttribute(java.lang.String, java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   session.setAttribute("uname","ABC");
   ^
E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method
getAttribute(java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   out.println(session.getAttribute("uname"));
   ^
2 errors

what may be the reason?

Thanks in advance.

Regards,
Gopi

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com




--

This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JSP problem

2002-07-29 Thread Siddareddy Yanamala

hi...,

JavaWebServer2.0 does n't support servlet2.2 and JSP1.1 so
setAttribute and getAttribute won't work in JWS. 

have nice solutions...

siddhu

-Original Message-
From: Gopinath d [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 1:01 PM
To: [EMAIL PROTECTED]
Subject: JSP problem


hi all,


pl have a look at the code given below.

The Current Session id is: <%= session.getId()%>
<%
 out.println("Click me");
 session.setAttribute("uname","ABC");
 out.println(session.getAttribute("uname"));
%>

//End of the program


If i execute the program, it displays an error message stating that

E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:78: Method
setAttribute(java.lang.String, java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   session.setAttribute("uname","ABC");
   ^
E:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_fst.java:79: Method
getAttribute(java.lang.String) not found in interface
javax.servlet.http.HttpSession.
   out.println(session.getAttribute("uname"));
   ^
2 errors

what may be the reason?

Thanks in advance.

Regards,
Gopi


===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



URGENT !!! - Compressing JSP

2002-07-29 Thread Bommakanti, Vamsee

Hi
Can any one give me idea about how to compress a JSP output. I am using
Tomcat for running JSP's
I looked at gzip but donot know how to use it in a JSP.
Thanks
Vamsee

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: URGENT !!! - Compressing JSP

2002-07-29 Thread Hans Bergsten

Bommakanti, Vamsee wrote:
> Hi
> Can any one give me idea about how to compress a JSP output. I am using
> Tomcat for running JSP's
> I looked at gzip but donot know how to use it in a JSP.

Things like that should not be done by the JSP page. A better approach
is to use filter, as described in this article:

   

Hans
--
Hans Bergsten   [EMAIL PROTECTED]
Gefion Software http://www.gefionsoftware.com
JavaServer Pageshttp://TheJSPBook.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Any Tools For Webbased Reports?

2002-07-29 Thread Daniel

Hi

I am having problems with attachment because the Javamail attaches files
only in local path and not in the network path,
Local path = client and server in windows O/S ( strAttach =
c:\example.txt)


Network path= I am not sure ..but I think should be something like
(/usr/temp/mail)

// attach the file to the message
 FileDataSource fds = new FileDataSource(strAttach);
 mbp2.setDataHandler(new DataHandler(fds));

How do we overload this FileDataSource to attach file for a network path
in Linux based System.



do we need to use this? The demo mail in JSPinsider or JavaMail does not
explain this in my knowledge!



Is there any work around for this?

Thanks in admvance.
Regards
Daniel Jayapaul.E

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



File Attachment O/S Dependent?

2002-07-29 Thread Daniel

Hi All,

I am having problems with attachment because the Javamail attaches files
only in local path and not in the network path,
Local path = client and server in windows O/S ( strAttach =
c:\example.txt)


Network path= I am not sure ..but I think should be something like
(/usr/temp/mail)

// attach the file to the message
 FileDataSource fds = new FileDataSource(strAttach);
 mbp2.setDataHandler(new DataHandler(fds));

How do we overload this FileDataSource to attach file for a network path
in Linux based System.



do I have to use this? The demo mail in JSPinsider or JavaMail does not
explain this in my knowledge!



Is there any work around for this?

Thanks in advance.
Regards
Daniel Jayapaul.E

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



A doubt in PHP

2002-07-29 Thread Gopinath d

Hi all,

I want to send the data entered thru the keyboard from one screen to another window.

How is it possible in PHP?

Thanks in advance.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: A doubt in PHP

2002-07-29 Thread Vikramjit Singh

this is jsp mailing list. Dont you think you are asking a way off topic
thing, without mentioning it also. You could try in  PHP mailing list.

Regards,
Vikramjit Singh,
Systems Engineer,
GTL Ltd.
Ph. 7612929-1059


-Original Message-
From: Gopinath d [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 11:04 PM
To: [EMAIL PROTECTED]
Subject: A doubt in PHP


Hi all,

I want to send the data entered thru the keyboard from one screen to another
window.

How is it possible in PHP?

Thanks in advance.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Pam Kerensky/IDGWEB is out of the office.

2002-07-29 Thread Pam Kerensky

I will be out of the office starting  07/30/2002 and will not return until
07/31/2002.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com