• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Can session variables be stored in HTML

 
Ranch Hand
Posts: 413
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my case I have an HTML with some hidden fields
On click of a hyperlink I popup another jsp containing some input text fields now if i want that whtever i entered in input fields should be stored in parent HTML hidden fields
Now on click of submit button of this jsp i m storing all the values in some session
Is now it is possible in any case that these session values can be retrived in my parent HTML hidden fields
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Gaurav,

I doubt,
The session variables are stored on client side.
If u use jsp instead of ur HTML page then these variables can be stored. But with html i think u can not retrieve those session variables in Html

If anybody is having the other ideas then let me know
Shashank
shashank_hiwarkar@hotmail.com
 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gaurav Chikara:
In my case I have an HTML with some hidden fields
On click of a hyperlink I popup another jsp containing some input text fields now if i want that whtever i entered in input fields should be stored in parent HTML hidden fields
Now on click of submit button of this jsp i m storing all the values in some session
Is now it is possible in any case that these session values can be retrived in my parent HTML hidden fields


Let me be sure
What u want is that when a user clicks page A, Page B opens up and some data that is entered in Page B should be stored in Page A also .right !!!
Based on this assumption,my answer is that it is possible to do this using JavaScript.
Here's a statement which u can put in ur Java Script function when u click on submit.
window.opener.document.forms[0].txtToR.value = document.frmTest.txtTest.value
here txtToR is a text control on main page i.e. Page A and txtTest.value is the value on Page B.
Here window.opener keyword refers to the Parent page.
Hope this helps
Hemanth
 
Gaurav Chikara
Ranch Hand
Posts: 413
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Hemant thnkx for the help
U r great
I wish I cud also become like u


[This message has been edited by Gaurav Chikara (edited April 02, 2001).]
 
I was her plaything! And so was this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic