How to access Session in javascript
Introduction In this article we learn about how we can access ASP.NET server side session variable or data in client side JavaScript. I have requirement for current user session variable in client side to perform some action based on user and its role. Here are method or way to interact session variable in client side or in JavaScript. 1. Directly access session variable with mix code(Asp.net Server side) as per the below code. //First way to access session console.log("UserId:" + '<%=Session["UserId"] %>'); console.log("UserRole:" + '<%=Session["UserRole"] %>'); 2. Fetch session value from HiddenField To fetch session value from hidden field first we have to set session data in server side and then we can access stored hidden value data in client side javascript. //Set session value to hidden field for access this value in jquery protected void setSessionToHiddenValue() {