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
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 ]
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 .