• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

JavaScript varialble in a Servlet

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am developing an JSP application where, i would like to use a JavaScript variable in the Java servlet Code. Please tell me how do i do it?
 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, the way I understand it, you can't do this directly:
the javascript is executed in the client's browser, *after* your jsp page has already done it's thing.
Therefor, the JSP page needs to be executed again.
The way I'd do it is to let let the javascript address the same page with your needed value as a GET or POST parameter.
Hope this solves it.
 
Madhav T Murthy
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for answering my query Mr Thomas.
But could please clear my doubt with an example ??
I just got the idea what should be done..but please give an example.
reply
    Bookmark Topic Watch Topic
  • New Topic