Please explain about how to read a session variable in JavaScript which is defined externally.
Can we read this within the page?
Total Post:47
Points:331Please explain about how to read a session variable in JavaScript which is defined externally.
Can we read this within the page?
Post:47
Points:331thank you
© Copyright © 2010 - 2019 MindStick Software Pvt. Ltd. All Rights Reserved
Post:127
Points:915Re: Session variable in Java script
use global variable in your ASPX file : var sessionValue = '<%= Session["YourKey"] %>'.
Now this global variable will be visible to the external JavaScript files that's included in the page.You can use "sessionValue" as you need.