I have to process an operation in Javascript using data stored in session (System.Web.HttpContext.Current.Session["Filtre"])
Is it even possible to catch and do operation in Javascript using the asp.net session ?
I already tried some sample like this one without success :
var f = '<%=Session["Filtre"]%>';
In the case where this is impossible (for security issues I guess), is it possible to call a aspx.cs function in javascript who will perform the operation ?
Have a good day.