how can i get a ASP.NET session variable in javascript?

TheScr3aM

New Member
i have a website a with some textfields.website b is in the iframe of a. I saved in website b some values in different sessions\[code\] Session("anzahlInterneTeilnehmer") = anzahlInterneTeilnehmer Session("anzahlExterneTeilnehmer") = anzahlExterneTeilnehmer\[/code\]after i saved the sessions i call the parent function from website a\[code\]parent.parentTeilnehmer()\[/code\]i want to display the session values in the textfields of website a \[code\] function parentTeilnehmer() { var intern = ???? var extern = ???? var InterneTextFeld = ISGetObject("WebInput1"); var ExterneTextFeld = ISGetObject("WebInput2"); InterneTextFeld.SetValueData(intern); ExterneTextFeld.SetValueData(extern); }\[/code\]how can i do that without refreshing the whole page?
 
Back
Top