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

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 12:37 PM

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 Geeta Kottapalli
Very sorry for the typo.I used the same case while requesting and while sending.Here is my exact code for the two forms, Form1.jsp and Form2.jsp. Form1.jsp : <%@ page language="java"%> Form1 function submitInfo() { document.frm1.method="post"; document.frm1.action="Form2.jsp?plantId=10

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 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") > which shows null > when submiting the

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 string i.e, > action="Form2.jsp?plantId=50&

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.frm1.submit(); When info from Form1.jsp