Array of values ???

2003-07-07 Thread Eric Chow
Hello, The following is a HTML form with a set of same name. How can use HttpClient to post them ?? Best regards, Eric = script language=JavaScript C_ITEM_NO = 5; C_BOOKING_HOUR_LIMIT = 3; function check_input() { i = 0; fillCnt = 0; loopCnt =

Re: Array of values ???

2003-07-07 Thread Chris Brown
/ - Chris - Original Message - From: Eric Chow [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 07, 2003 11:47 AM Subject: Array of values ??? Hello, The following is a HTML form with a set of same name. How can use HttpClient to post them ?? Best regards, Eric

Re: Array of values ???

2003-07-07 Thread Roland Weber
The following is a HTML form with a set of same name. How can use HttpClient to post them ?? PostMethod.addParameter(...) allows the same parameter name to be used multiple times. Or you can try a comma-separated list of the values you want to send. regards, Roland