Application variable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to get some application's value without doing a post is it possible. Using javascript.
In this exemple I do a click in an html <input>, and i would like to get the value of that application variable(application("var")).

Thanks in advance
 
Application variables are stored in the server's memory. Therefore, the only way to get that value is via a round trip. If the varible is available at page load then when the page builds you could store the value in a hidden field on the page then have your javascript access the field when you click the button.
 
Your post went unanswered. Have you resolved this issue?

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Me_Titus said:
I want to get some application's value without doing a post is it possible. Using javascript.
In this exemple I do a click in an html <input>, and i would like to get
the value of that application variable(application("var")).
 
Back
Top