Re: jsp reloading from servlet

2001-08-19 Thread Praveen Tapashetti
One more thing I want to add is that I am using iPlanet Application Server 6.0 Service Pack2. Regards, Praveen -Original Message- From: Paraveen, Tapashetti (CAP, GEFA, Contractor) Sent: Monday, August 20, 2001 10:40 AM To: 'A mailing list about Java Server Pages specification and

Re: JSP not catching Exception!?

2001-08-19 Thread Kevin Duffey
Not sure about the rest, but don't create a new object by throwing a NEW one...just rethrow the one you caught (throw e) -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Brian slezak Sent: Saturday,

Convert a Parameter as an Integer

2001-08-19 Thread Dinesh Somasundram
Hi All, How do I get/convert a parameter from a page as an Integer? I've tried casting the parameter as like so: int iAge = (int) request.getParameter(Age); But keep getting Invalid cast from java.lang.String to int Please kindly advice. Thanx, Dinesh, S.

PARAMETERS

2001-08-19 Thread Dinesh Somasundram
Hi There, I'm still working with form parameters. The following statement seem to work String UID = (String) session.getValue(UserID); if (UID==null) UID=; but this doesn't:- String UID = (String) (session.getValue(UserID)==null)?:session.getValue(UserID); Are't they