Re: replace + in URL with %2B

2004-01-15 Thread Hyne, David
Use java.net.URLEncoder to encode (upon submit), decode (upon receipt) instead. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] Behalf Of Jan Arenö Sent: Wednesday, January 14, 2004 1:04 AM To: [EMAIL PROTECTED] Subje

Taglib & Events

2003-10-16 Thread Hyne, David
Hi, Is there a good example describing how to handle events between two tags. For example, input type=text tag onchange event to re-populate the input type=select tag contents? Thanks, -- This email is confidential and

Re: Problem with orielly multipartparser

2003-09-29 Thread Hyne, David
When you submit, do a URLEncoder.encode() the strings and on receiving end do the URLDecoder.decode(). -Original Message- From: Partha Ranjan Das [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 2003 9:18 PM To: [EMAIL PROTECTED] Subject: Re: Problem with orielly multipartparser H

Re: Problem with JSP/JDBC insert

2003-08-29 Thread Hyne, David
. :-( If I have multiple inserts going on, should I be doing stmt = conn.createConnection() stmt.executeUpdate(); stmt.close() For each statement...or just the stmt.executeUpdate() part? Thank you! ~ Troy Campano ~ -Original Message- From: Hyne, David [mailto:[EMAIL PROTECTED] Sent: Friday

Re: Problem with JSP/JDBC insert

2003-08-29 Thread Hyne, David
The code is correct as is. It could be getting in array.size() of > 1 and insert more than one time ;-) You may change to PreparedStatement() instead and try it. But define it outside your For-loop and just clear parameters upon new line(s). And do not close it inside the loop. -Original M