IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Engineering » HTML and JavaScript
 
RSS feed
 
New topic
Author

passing javascript array from jsp to servlet

pravin shirke
Ranch Hand

Joined: Apr 05, 2008
Messages: 114

how do i pass a javascript Array from a jsp to a servlet??
in my javascript script tag i have written this code
what i m trying to do is pass all the values of the list box to array and pass this array to servlet for inserting into the database.

function addVar()
{
//alert("hi");
var val=new Array();
val=document.getElementById("ListedSubjectID");
var i=val.length;
//alert(i);
for(var j=0;j<i;j++)
{
//alert(val.options[j].Value);
val.options[j].Value;
}
document.getElementById("Val1")[0].value=val;
}
where Val1 is the hidden field.
and ListedSubjectID is the list box name
and in my servlet i did something like

String values[]=request.getParameterValues("Val1");
for (String value : values)
{
System.out.println("The value is "+value);
}
String value=request.getParameter("Val1");
System.out.println("The Parameter value is "+value);

i tried both the methods but it does not print any thing.
the value of values[]=""
and value is =""
please help

SCJP1.5 - 88%.<br />SCWCD1.5 - Preparing.
Justin Fox
Ranch Hand

Joined: Jan 24, 2006
Messages: 782

I'm guessing .jsp page is the page with the javascript, and the servlet is the page containing the server sided script to insert into the db and such.

what you COULD do is just make a comma delimited string with
all the values from the list box (is this a <select>?).

and then just use ajax to send that string to the server, and in the server get the querystring from the url and then insert those values into the db for as many values in the csv.



Now if you have used ajax, which I assume you have, you should
know what to do next, if not, let me know and I'll post a snippet.

I hope this is what you were talking about lol,

Justin Fox
[ June 13, 2008: Message edited by: Justin Fox ]

You down with OOP? Yeah you know me!
Bear Bibeault
Author and opinionated walrus
Sheriff

Joined: Jan 10, 2002
Messages: 36591

pravin shirke, Please be sure to use UBB code tags when posting code to the forums. Unformatted code is extermely hard to read and many people that might be able to help you will just move along. Please read this for more information.

You can go back and change your post to add code tags by clicking the .

[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
pravin shirke
Ranch Hand

Joined: Apr 05, 2008
Messages: 114

thanks for your code justin. but i dont know ajax so can you give me the code snippet please. thank you

SCJP1.5 - 88%.<br />SCWCD1.5 - Preparing.
vinod kalghatgi
Greenhorn

Joined: Jun 09, 2008
Messages: 3

[Thread hijack and cross-post removed.]
[ October 08, 2008: Message edited by: Bear Bibeault ]
majid nakit
Ranch Hand

Joined: Jun 26, 2001
Messages: 128

Hi,
I have the same situation :

Please I would like to have the code snippet.

Thanks lot.
 
jQuery in Action
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Engineering » HTML and JavaScript
 
RSS feed
 
New topic
replay challenge

.