954,600 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Passing paramter from javascript to jsp

Hi ,

I have a function as :
function doCheck(str1,str2)
{
top.LocalCacheLoadStatus = false;
parent.SearchFrame.location.href=str1;
g_str_Mode = str2;
alert (g_str_Mode);
}

This has str1 as the name of the jsp file and str2 is the value which i have to pass to the jsp file given in str1.How do i do that ?

Thanks & Regards
Soni

Soni_7
Newbie Poster
3 posts since Jul 2005
Reputation Points: 10
Solved Threads: 0
 

Try this:

function doCheck(str1,str2) { 
  top.LocalCacheLoadStatus = false;
  parent.SearchFrame.location.href=str1;
  g_str_Mode = str2;
  alert (g_str_Mode);
  var url = str1+".jsp?str2="+str2;
  alert(url);
  document.location = url;
 }


If you need to pass the variable to the jsp page, and you don't need your user to ever see the output from that jsp page--that is, you want the user to stay on the current page without noticing the value was submitted, you can use a hidden iframe--and navigate it instead of your main page. You can also use an AJAX solution, but an iframe does just fine and is easier to make compatible across browsers.

Troy
Posting Whiz
362 posts since Jun 2005
Reputation Points: 36
Solved Threads: 6
 

Hi,
Thanks a lot. I hope it works.Let me try.

Regards,
Soni

Soni_7
Newbie Poster
3 posts since Jul 2005
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You