Re: copying javascript variable to JSP variable

2001-04-09 Thread Dubreuil, Jason
Create a form variable call data_value And then reference it like this using javascript. window.open('http://abc?nam=' + document.formname.data_value.value + 'otherparam='); -Original Message- From: Warty, Koustubh [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 11:29 AM To:

Re: Cancelling of changes in a form

2001-03-23 Thread Dubreuil, Jason
If it's not sensitive data then just drop a hidden input field on the form, and then compare the original data to a possibly changed field when they submit the page. -Original Message- From: Mihir Sahu [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 11:08 AM To: [EMAIL

Re: getting paramater names from checkboxes

2001-03-23 Thread Dubreuil, Jason
Add a number to name of the CheckBox if they are created dynamically. Then loop through all of them. input type=chceckbox name=select1 value=a input type=chceckbox name=select2 value=b input type=chceckbox name=select3 value=c String whatToDo = request.getParameter("select" + inum);