request.getParameter

2000-08-30 Thread sumit shah
Hi, i am passing two values, A and B in the url as querystrings, when going from one page to another. So to retrieve the values i simply do request.getParameter("A") and simillarly for B. When the first time i load the page i dont want to pass the value for B. What should i w

request.getParameter

2000-08-30 Thread sumit shah
Hi, i am passing two values, A and B in the url as querystrings, when going from one page to another. So to retrieve the values i simply do request.getParameter("A") and simillarly for B. When the first time i load the page i dont want to pass the value for B. What should i write

Request.getParameter

2000-04-13 Thread Pablo Rito (ERA)
hi all, I have a problem with Request.getParameter() , i wrote <%! String namn=""; String temp=Request.getParameter("anvnamn"); %> I have also included the package like this <%@ page import = "javax.servlet.ServletRequest" contentType="text/vnd.

Request.getParameter

2000-07-18 Thread Putu Agus Purnawan
Hi all, I've a page and its parameter "welcome.jsp?name=c_cobj#_file#" when I try to use request.getParameter("name"), it returns c_cobj only, Am I missing something ? Regards PAP === To unsubscribe

request.getParameter() question.

2000-08-27 Thread Brian Slezak
Why can you not use request.getParameter() in a declaration? More specific, how are you supposed to write a method that can check the values of a form input. Say I want a method called checkValues() that validates the user input to the form, and outputs which fields are invalid. Any

Re: request.getParameter

2000-08-30 Thread Boaz Laor
>> Hi, i am passing two values, A and B in the url as querystrings, when going from one page to another. So to retrieve the values i simply do request.getParameter("A") and simillarly for B. When the first time i load the page i dont want to pass the value for B. What s

Re: request.getParameter

2000-08-30 Thread Rick Reumann
In the page you are calling: String B = null; if ( request.getParameter("B") != null ) { B = request.getParameter("B"); } This will keep String B as null in your page if nothing is passed over for the value of "B". Rick On 30 Aug 2000, at 13:55, sumit sha

Re: request.getParameter

2000-08-30 Thread Artem Babenko
Hi You have mistaken in some other place. Anyway try { if(null==request.getParameter("B")) { Do_if_null(); } else { Do_if_not_null(); } } catch(nullPointerException e) { Do_if_null(); } Artem Hi, i am passing two

Re: request.getParameter

2000-08-30 Thread Jansi
ED]> Sent: Thursday, August 31, 2000 1:32 AM Subject: request.getParameter > Hi, >i am passing two values, A and B in the url as querystrings, when going > from one page to another. >So to retrieve the values i simply do request.getParameter("A") and > simillarly fo

Request.getParameter() question

2000-04-03 Thread Portal Team
Hi I need to refer to *all* the values of a combobox in one page across the session. i can get the selected value by Request.getParameter("comboname"); how can i refer to all the values? Eg. I have 1 2 more values are added to the form dynamically in get.jsp i want to be ab

Re: Request.getParameter

2000-04-13 Thread Burky Stéphane
There are a few mistakes in your application : - Do not use Request.getParameter("anvnamn") in declaration tag <%! %> - You do not have to import "javax.servlet.ServletRequest" - The real syntax is : String temp = request.getParameter("anvnamn"

Re: Request.getParameter

2000-04-13 Thread Lance Lavandowska
request.getParameter() returns a String, so the toString() call is unnecessary. It is also dangerous as request.getParameter("var") may return NULL if "var" was not a form element in the submitted form, or if it was an unchecked Checkbox or Radiobutton. from http://java.sun.

Re: Request.getParameter

2000-04-13 Thread liuhao
> There are a few mistakes in your application : > - Do not use Request.getParameter("anvnamn") in declaration tag <%! %> > - You do not have to import "javax.servlet.ServletRequest" > - The real syntax is : String temp = > request.getParame

Re: Request.getParameter

2000-04-14 Thread Sachin S. Khanna
String temp = request.getParameter("anvnamn").toString(); No Need to use .toString(). The request.getParameter("parametername") would return a String. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: Burky Stéphane &l

Re: Request.getParameter

2000-04-14 Thread Som Subhra Chakraborty
Hi Fred, The real syntax is not really: String temp = request.getParameter("anvnamn").toString(); It's even simpler. It's String temp = request.getParameter("anvnamn"); Automatically a string value is returned from request.getParameter(); -- From

Re: Request.getParameter

2000-04-15 Thread VERA USTARIZ OMAR DIEGO
On Thu, 13 Apr 2000, Pablo Rito (ERA) wrote: > hi all, > I have a problem with Request.getParameter() , i wrote > <%! String namn=""; > String temp=Request.getParameter("anvnamn"); > %> > I have also included the package like this > <%@ page i

about request.getparameter

2000-07-12 Thread shu-chun
hi, all, i have a question about getparameter for example, i have the codes as below: 1.jsp String selectdata="any"; if (request.getParameter("selectdata").equals("submit")) { jobs.selectsingledata(); } i have two jsp pages, for example, A.jsp and B.jsp. both

Re: Request.getParameter

2000-07-18 Thread Kumail Rizvi
D] Subject: Request.getParameter Hi all, I've a page and its parameter "welcome.jsp?name=c_cobj#_file#" when I try to use request.getParameter("name"), it returns c_cobj only, Am I missing something ? Regards PAP ===

request.getParameter(..) problem

2002-06-27 Thread Jamshed Siddiqui
.println("FirstParam: " + request.getParameter("attached_file")); out.println("\n SecondParam: " + request.getParameter("param2")); out.println("\n ThirdParam: " + request.getParameter("param3")); } } The problem is that System.out.println(request.

Re: request.getParameter() question.

2000-08-28 Thread Veronique Dupierris
If yoiu want your function to access request object you should pass it as a parameter ... Brian Slezak a écrit : > Why can you not use request.getParameter() in a declaration? > > More specific, how are you supposed to write a method that can check the > values of a form

Re: request.getParameter() question.

2000-08-31 Thread TomyWang
hehe..javascritpt? === 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/j

Re: request.getParameter() question.

2000-09-01 Thread Naveen Gupta
TED]> -Original Message- From: Brian Slezak [mailto:[EMAIL PROTECTED]] Sent: Monday, August 28, 2000 8:36 AM To: [EMAIL PROTECTED] Subject: request.getParameter() question. Why can you not use request.getParameter() in a declaration? More specific, how are you supposed to write a

request.getParameter - Repeating Fields

2001-04-04 Thread Willy LEGIMAN
Hi there, I've got a form that has got X number of fields. Every field name on the form has the prefix 'address', e.g. address0, address1, address2, ... addressX. How best can I get all the parameters after I submit the form, using the following? 1. JSP 2. Servlet 3. Bean (using setProperty) Re

Re: Request.getParameter() question

2000-04-03 Thread Liza J Alenchery
U get an array of strings. Loop through the array. I think this is the way to do it. Pls correct me if I am wrong. String[] theArray = Request.getParameter("comboname"); for (int i = 0; i < theArray.length; i++) { what u need. } liza - Original Message -

Re: Request.getParameter() question

2000-04-03 Thread Mike McKechnie
> > i can get the selected value by Request.getParameter("comboname"); > > how can i refer to all the values? > .getParameterValues("comboname"); === To unsubscribe: mailto [EMAIL PROTECTE

Re: Request.getParameter() question

2000-04-03 Thread Portal Team
Thanks for the reply , Liza However, > >String[] theArray = Request.getParameter("comboname"); > Request.getParameter("comboname"); returns only the selected value Is there a way i could select all the values ( if cbbox is set to multis

Re: Request.getParameter() question

2000-04-03 Thread Portal Team
Thanks for the reply, > > how can i refer to all the values? > > >.getParameterValues("comboname"); If none of the values in the combo box are selected, this returns null <%=request.getParameterValues("cbyoursel")%> , is the code i tried for a cbbox cbyoursel which is populated with values but

Re: Request.getParameter() question

2000-04-03 Thread Mike McKechnie
> > Thanks for the reply, > > > > how can i refer to all the values? > > > > >.getParameterValues("comboname"); > > > If none of the values in the combo box are selected, this returns null > <%=request.getParameterValues("cbyoursel")%> , is the code i tried for a > cbbox cbyoursel which is populat

Re: Request.getParameter() question

2000-04-03 Thread Phil Campbell
group, I'll ignore JavaScript solutions -- From what I understand of your question, pure Java can handle your needs, all from the server, eliminating obvious JavaScript problems. Two answers: 1.Others have proposed request.getParameter. You will need to parse the request.getParameter strin

Re: Request.getParameter() question

2000-04-06 Thread Portal Team
thanks for the help everybody, finally i looped through the combo, concatednated the values and passed them by putting in a hidden input field. On the other side, i used the string tokenizer to read the values and display accordingly thanks again Vineet

Re: Request.getParameter() question

2000-04-06 Thread Portal Team
Thanks for the explanation Phil, I managed to transfer the values of the combo to another jsp page. >2.If you asking how to get all the possible items of a form list >(myform.mycombo), from which a client may select, you will need to >read >and parse the form... not the request. that is one

Re: Request.getParameter() question

2000-04-03 Thread Mike McKechnie
> Request.getParameter("comboname"); returns only the selected value > > Is there a way i could select all the values ( if cbbox is set to > multiselect) *through code* > As I said... use request.getParameterValues("comboname"), that returns an array of

Help on Request.getParameter

2000-05-05 Thread Putu Agus Purnawan
Hi all, I have list box on page and the value and lable are DATABASE LINK FUNCTION INDEX PACKAGE PACKAGE BODY When I try to get the value of "DATABASE LINK" from this form using request.getParameter(), it's not all the value but only part of it "DATABASE"

jspInit() and request.getParameter()

2000-05-22 Thread David Edmister
i get an error using the "request.getParamter()" object/method in the jspInit() method of the page object. are you allowed to get parameters passed to a page "before processing"? i'm basically trying to prepare a recordset that i'm going to keep static in the page so i'm placing the code into th

Re: about request.getparameter

2000-07-12 Thread Hans Bergsten
shu-chun wrote: > > hi, all, i have a question about getparameter > for example, i have the codes as below: > > 1.jsp > String selectdata="any"; > if (request.getParameter("selectdata").equals("submit")) { > jobs.selectsingledata(); >

Re: request.getParameter(..) problem

2002-06-28 Thread Richard Yee
You can't read the file upload parameter using request.getParameter(). You will need to use a file upload library class such as Jason Hunter's found on servlets.com. to read uploaded files. Having a file upload parameter in your form is causing the problems with reading the other para

Convert request.getParameter to sql.Date

2001-02-14 Thread Nimmons, Buster
How do I convert a request.getParameter to a sql.Date Object. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-

Re: request.getParameter - Repeating Fields

2001-04-04 Thread Kailash Nath Pandey
-->DO try it Thanks & Regards -- Kailash N.Pandey Aithent Technologies (SSI),New Delhi, [EMAIL PROTECTED] Do Take Very Good Care Of Your Health - Original Message - From: Willy LEGIMAN <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 04, 2001 1:13 PM Subje

Re: request.getParameter - Repeating Fields

2001-04-04 Thread iZone Infotech
2001 1:13 PM Subject: request.getParameter - Repeating Fields > Hi there, > > I've got a form that has got X number of fields. Every field name on the > form has the prefix 'address', e.g. address0, address1, address2, ... > addressX. > > How best can I get all t

Re: request.getParameter - Repeating Fields

2001-04-04 Thread Kailash Nath Pandey
Take Very Good Care Of Your Health - Original Message - From: Kailash Nath Pandey <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 04, 2001 1:52 PM Subject: Re: request.getParameter - Repeating Fields > hi > > How best can I g

Re: request.getParameter - Repeating Fields

2001-04-04 Thread Alexandr Karimov
The best way is to name all fields with one name "address" and in jsp write next code: String[] addresses=request.getParameterValues("address"); The other way is (values to Vector): Vector v=new Vector(); int k=0; while(request.getParameter("address"+String

Re: request.getParameter - Repeating Fields

2001-04-10 Thread Pramod Shrinivas Tol
Hi , User request.getParameternames() which will return u an enumeration and iteratei t to get the values.. pramod - Original Message - From: "Willy LEGIMAN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 04, 2001 1:13 PM Subject: request.ge

Re: Help on Request.getParameter

2000-05-05 Thread LEBARON Christian FTRD/DMI/SOP
Try with the "..." : DATABASE LINK FUNCTION INDEX PACKAGE PACKAGE BODY Regards -Message d'origine- De : Putu Agus Purnawan [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 5 mai 2000 09:42 À : [EMAIL PROTECTED] Objet : Help on Request.getParameter Hi all, I have list

Re: Help on Request.getParameter

2000-05-05 Thread Robo Žilka
EMAIL PROTECTED] Subject: Help on Request.getParameter Hi all, I have list box on page and the value and lable are DATABASE LINK FUNCTION INDEX PACKAGE PACKAGE BODY When I try to get the value of "DATABASE LINK" from this form using request.getParameter(), it's not all the

Re: Help on Request.getParameter

2000-05-05 Thread [Vinod Govindan]
elp on Request.getParameter Sent by: A mailing list about Java Server Pages specification and reference 05/05/00 01:12 PM

Re: jspInit() and request.getParameter()

2000-05-23 Thread Kevin Jones
PROTECTED] > Subject: jspInit() and request.getParameter() > > > i get an error using the "request.getParamter()" object/method in the > jspInit() method of the page object. > > are you allowed to get parameters passed to a page "before > processing"? i&#

Re: jspInit() and request.getParameter()

2000-05-23 Thread David Edmister
:[EMAIL PROTECTED]] Sent: Monday, May 22, 2000 11:48 PM To: [EMAIL PROTECTED] Subject: Re: jspInit() and request.getParameter() JSP are just servlets. In a servlet Init is called once (when the container loads the servlet), ditto for jspInit. In [jsp]Init you are not servicing the request, so the

Re: jspInit() and request.getParameter()

2000-05-23 Thread Kevin Jones
elopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of David Edmister > Sent: 23 May 2000 16:14 > To: [EMAIL PROTECTED] > Subject: Re: jspInit() and request.getParameter() >

Re: jspInit() and request.getParameter()

2000-05-23 Thread Sachin S. Khanna
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 23, 2000 6:22 AM Subject: jspInit() and request.getParameter() > i get an error using the "request.getParamter()" object/method in the > jspInit() method of the page object. > > are you allowed to get p

request.getParameter with multiple values

2000-05-24 Thread Nimmons, Daniel
I have a form with a select box set to multiple so a user can select multiple entries. How do I handle the multiple values passed to the next form using the request.getParameter... This seems to only return one value from the multiple values selected from the previous form. Daniel (Buster

request.getParameter() in an if statement

1999-11-29 Thread Jón Dal Kristbjörnsson
Hi, can anyone tell me why I can't use any comparison with a requested parameter value, like this: String strAction = request.getParameter("fmAction"); if (strAction == "write") { out.println("Test"); } If I pri

request.getParameter("Name") with special chars

2000-11-06 Thread Jj Fu
request.getParameter("Name") is the way to fetch the form input. When the input is a , the user may type multple lines of input. It seems like request.getParameter() will NOT fetch the new line char. It also will NOT fetch special chars, like tab, space (in there is more than one

Re: Convert request.getParameter to sql.Date

2001-02-14 Thread Peter Pilgrim
use java.text.SimpleDateFormat class to this task SimpleDateFormat fmt = SimpleDateFormat( "dd MM " ); Date da_date = fmt.parse( request.getParameter("dogs_bollox") ); -- Peter Pilgrim G.O.A.T "

Re: request.getParameter with multiple values

2000-05-24 Thread Peter Choe
use request.getParameters(); this returns an array of value pairs. "Nimmons, Daniel" wrote: > I have a form with a select box set to multiple so a user can select > multiple entries. How do I handle the multiple values passed to the next > form using the request.getParamet

Re: request.getParameter with multiple values

2000-05-24 Thread Richard Yee
Daniel, Don't use request.getParameter(). Use request.getParameterValues() instead. getParameterValues returns an array of String. getParameter() is deprecated (sort of). -Richard Yee -Original Message- From: Nimmons, Daniel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 24,

Diff between request.getParameter() and request.getInputStream()

2001-09-18 Thread Parag Patwa
CAn anyone tell me the difference between request.getParameter() and request.getInputStream()? I am assuming they both return the same part of the request in different forms. Parag Diese Nachricht ist vertraulich. Sie ist ausschliesslich fuer den im Adressfeld ausgewiesenen Adressaten

Re: Diff between request.getParameter() andrequest.getInputStream()

2001-09-18 Thread Christopher K. St. John
Parag Patwa wrote: > > Can anyone tell me the difference between request.getParameter() and > request.getInputStream()? I am assuming they both return the same > part of the request in different forms. > Sort of, but not exactly. From the (2.3PFD2) spec: SRV.4.1 Parameters

request.getParameter() decode a url incorrectly

2002-09-25 Thread M. Amin
Dear All, I used java.net.UrlEncoder class to encode my url but when i read the decoded url which is sent as request parameter using request.getParameter method i found the url id decoded incorrectly and all the encoded '&' characters are missed. Is there any way to recove

Re: request.getParameter() in an if statement

1999-11-29 Thread Gordon
rds Gordon Thompson -Original Message- From: Jsn Dal Kristbjvrnsson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: 1999-11-29 12:02 Subject: request.getParameter() in an if statement Hi, can anyone tell me why I can't use any comparison with a

Re: request.getParameter() in an if statement

1999-11-29 Thread Barry Scott
The String is an object so you must use: String strAction = request.getParameter("fmAction"); if (strAction.equals("write")) { out.println("Test"); } Hope this helps Barry Scott IJava UK - Original Message

Re: request.getParameter() in an if statement

1999-11-29 Thread Ola Sandström (QDT)
As always with String comparison, use the equals() method: if ( "write".equals( request.getParameter("fmAction") ) ) { out.println( "Test" ); } /Ola > -Original Message- > From: Jón Dal Kristbjörnsson [mailto:[EMAIL PROTECTED]] > Sent:

Re: request.getParameter() in an if statement

1999-11-29 Thread Bernander, Marcus
CTED] Subject: request.getParameter() in an if statement Hi, can anyone tell me why I can't use any comparison with a requested parameter value, like this: String strAction = request.getParameter("fmAction"); if (strAction == "write") { out.prin

Re: request.getParameter() in an if statement

1999-11-29 Thread Legros, Bertrand
Jón Dal Kristbjörnsson [SMTP:[EMAIL PROTECTED]] > Sent: Monday, November 29, 1999 12:54 PM > To: [EMAIL PROTECTED] > Subject: request.getParameter() in an if statement > > Hi, > > can anyone tell me why I can't use any comparison with a requeste

Re: request.getParameter() in an if statement

1999-11-29 Thread fgs
n true in both the cases? Any Java Team member can answer this question? -FGS Infotech Private Limited.. - Original Message - From: Jón Dal Kristbjörnsson <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 29, 1999 5:23 PM Subject: request.getParameter() in

Re: request.getParameter() in an if statement

1999-11-29 Thread Craig R. McClanahan
fgs wrote: > nOT ONLY THAT WE ALSO have the same problem with > > Case 1: > String str="Hello"; > String str2="Hello"; > > Case 2: > String str=new String("Hello"); > String str2=new String("Hello"); > > Java Documentation says that in case 1, The JVM does not create an object > for str2 but pass

request.getParameter problem with "plus" and "&" signs

2000-08-31 Thread Michal Belicek
---file1.jsp--- ---file2.jsp--- <%= request.getParameter("description")%> When I pass parameter from file1.jsp to file2.jsp and it's value is "C/C++" in file2.jsp I got only "C/C". The plus signs are missing. Even worse is w

Re: request.getParameter("Name") with special chars

2000-11-07 Thread Jj Fu
Thanks to an email from Bob Schmertz, I have resolved the issue. Special chars actually are passed to the server from browser and fetched by request.getParameter(). When I write back to the browser, html omited them. After I used tag, I see them. JJ Fu >>> Jj Fu <[EMAIL PROTECTE

Re: request.getParameter("Name") with special chars

2000-11-07 Thread Brooke M. Fujita
t: Re: request.getParameter("Name") with special chars Thanks to an email from Bob Schmertz, I have resolved the issue. Special chars actually are passed to the server from browser and fetched by request.getParameter(). When I write back to the browser, html omited them. After I used tag, I s

Re: request.getParameter("Name") with special chars

2000-11-07 Thread Jj Fu
y to your question? Aloha, Brooke -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Jj Fu Sent: Tuesday, November 07, 2000 7:52 AM To: [EMAIL PROTECTED] Subject: Re: request.getParameter("Name") with s

Re: request.getParameter("Name") with special chars

2000-11-07 Thread Venu Gopal
I faced the same situation, but not with request.getParameter(). But the solution is replace all occurrance of \n characters with while outputting to browser. You will get the text in the exact passion the user entered. I solved it in the same way. Cheers, Venu --- Jj Fu <[EMAIL PROTEC

Re: request.getParameter("Name") with special chars

2000-11-16 Thread Sunil Roy
Is this the reply from Mr. Bob ? How can the spaces in the string recd. from request.getParameter("some param name") be compressed by html. Note that the this getParameter() is used in servlet or Jsp & not in html. Pl. clarify. Bye Sunil - Original Message - From: &

Re: request.getParameter("Name") with special chars

2000-11-16 Thread Sunil Roy
- Original Message - From: "Jj Fu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 08, 2000 3:06 AM Subject: Re: request.getParameter("Name") with special chars > Here you are: > > I'm betting that you're forg

request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Geeta Kottapalli
Having problem with request.getParameter("plantID") which shows null when submiting the info as part of query string i.e, or in a JavaScript function as document.frm1.method ="post"; document.frm1.action="Form2.jsp?plantId=50&plantName=wxyz"; document.fr

Re: Diff between request.getParameter() and request.getInputStream()

2001-09-18 Thread Chris Pratt
request.getParameter() uses request.getInputStream() to do it's job. First, it reads the initial line of text and parses it for the URL that was used to request the page, which also contains the query arguments which are parsed and put into the table of Request Parameters. Then, if the Re

Re: request.getParameter() decode a url incorrectly

2002-09-25 Thread Amit Ghaste
ssage- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of M. Amin Sent: Wednesday, September 25, 2002 3:35 AM To: [EMAIL PROTECTED] Subject: request.getParameter() decode a url incorrectly Dear All, I used java.net.UrlEncoder class to

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Luis Navalpotro
Hi, Maybe is because you are requesting "plantID" and should be "plantId"... It is just a suggestion... Regards, Luis Navalpotro > Having problem with request.getParameter("plantID") > which shows null > when submiting the info as part of query stri

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Veronique Dupierris
Hi, The problem seems to be du to case sensitive : you use 'plantID' in your form and 'plantId' in your getParameter() ! So there are 2 different var ... Regards Veronique Geeta Kottapalli a écrit : > Having problem with request.getParameter("plantID") > w

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Johannes O. Akinlaja
li" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 13, 2000 5:43 PM Subject: request.getParameter("..") not working ???help me please !! > Having problem with request.getParameter("plantID") > which shows null > when submiting the i

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Geeta Kottapalli
Plant List Test QueryString : <%= request.getQueryString()%> PLantID: <%= request.getParameter("plantId")%> PLantName: <%= request.getParameter("plantName")%> Thanks, Geeta Here --- Geeta Kottapalli <[EMAIL PROTECTED]> wro

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Bodduls Sridhar
gkottapalli@Y AHOO.COM To: [EMAIL PROTECTED] cc: 06/13/00 Subject: request.getParameter("..") not working ???help me please

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Bodduls Sridhar
gkottapalli@Y AHOO.COM To: [EMAIL PROTECTED] cc: 06/13/00 Subject: Re: request.getParameter("..") not working ???help me

Re: request.getParameter("..") not working ???....help me please !!

2000-06-13 Thread Tamanna Kher
Hi it is working fine on my machine === 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://w

Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
Excuse me, I need help. One form field of my jsp contain Chinese Characters. and I post the form to my servlet, and my servlet insert the imformation into my Oracle DB. my question is how to get the request.getParameter("name") in Chinese character encoding and insert it properly i

Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Anna Spångberg
How do i get multiple values from a select menu with request.getParameter ? thanks anna === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can b

ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !!!

2000-08-21 Thread Agarwal Gokul
HI Guys I am connecting to a database and then trying to insert data into a table using request.getParameterbut am unable to do that...How do U assign the request.getParameter value to a variable in a JSP file ??? Thanx in advance !!! Regds Gocool

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread Panayotou, Michael
You have to translate the parameter from one character set to another. for example : String myparam = new String(request.getParameter("name").getBytes("iso-8859-1"),"iso-8859-7"); -Original Message- From: lancelot [mailto:[EMAIL PROTECTED]] Sent:

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread Glenn Wearen
its important to know the charset of the DB? if its UTFx you migh > -Original Message- > From: lancelot [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 8:48 AM > To: [EMAIL PROTECTED] > Subject: Need your help on request.getParameter and Chinese encoding. >

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
nt: Wednesday, July 11, 2001 4:25 PM Subject: Re: Need your help on request.getParameter and Chinese encoding. > You have to translate the parameter from one character set to another. for > example : > > String myparam = new > String(request.getParameter("

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
July 11, 2001 8:43 PM Subject: Re: Need your help on request.getParameter and Chinese encoding. > its important to know the charset of the DB? if its UTFx you migh > > > -Original Message- > > From: lancelot [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday,

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread [Vinod Govindan]
from a select menu list about Java Serverwith request.getParameter ? Pages specification and reference <[EMAIL PROTECTED] .COM> 05/04/00 01:53 PM

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Robo Zilka
: Multiple values from a select menu with request.getParameter ? How do i get multiple values from a select menu with request.getParameter ? thanks anna === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signof

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Pratyush Joshi Emp Code 4727
You can use the keyword "multiple" with the select tag. e.g. Red Green Blue To retrieve the values, use String strColor = request.getParameter("lstColor"); This will assign the selected values, delimited by commas, to strColor. On Thu, 4 May 2000, Anna Spångberg wr

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Antonio Jimenez
gberg" wrote: > > How do i get > > multiple values from a select menu with request.getParameter ? > > thanks > > anna > > === > To unsubscribe: mailto [EMAIL PROTECTED] with body: "si

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Corey A. Johnson
r(name) ; > ... > } > > "Anna Spångberg" wrote: > > > > How do i get > > > > multiple values from a select menu with request.getParameter ? > > > > thanks > > > > anna > > > > ===

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Kevin Duffey
May 04, 2000 1:24 AM > To: [EMAIL PROTECTED] > Subject: Multiple values from a select menu with request.getParameter ? > > > How do i get > > multiple values from a select menu with request.getParameter ? > > thanks > > anna > >

Re: Multiple values from a select menu with request.getParameter ?

2000-05-04 Thread Hans Bergsten
> > ... > > > > > > you can use > > > > for (Enumeration p = request.getParameterNames() ; p.hasMoreElements() ;) { > > name = p.nextElement().toString() ; > > value = req.getParameter(name) ; > > ..

Re: Multiple values from a select menu with request.getParameter ?

2000-05-05 Thread Dmitri Namiot
in html: use keyword multiple 1-st 2-nd ... in JSP/servlet request.getParameter("mylist") You will selected values, splited by commas. ServletShop: java server side programming http://coldjava.hypermart.net Ge

Re: ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !!!

2000-08-21 Thread Kumail Rizvi
Hi When u get parameter through request.getParameter it will return u a String object. Assign ur parameter to a String object and then concat it with ur Insert statement. e.g. String s=request.getParameter("Name"); String sql="Insert into tableName values ('"+s+&

Re: ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !! !

2000-08-21 Thread Naveen Gupta
--- From: Agarwal Gokul [mailto:[EMAIL PROTECTED]] Sent: Monday, August 21, 2000 12:15 PM To: [EMAIL PROTECTED] Subject: ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !!! HI Guys I am connecting to a database and then trying to insert data into a table using request.getParame

Re: ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !!!

2000-08-21 Thread JSPInsider
Here is one example of getting a value with request.getParameter(), http://www.jspinsider.com/beans/beans/email/BeanMailer/index.html Hope it helps! [EMAIL PROTECTED] - Original Message - From: "Agarwal Gokul" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sund

  1   2   >