As in question. Is it possible to set variable in asp.net page in localStorage and retrieve it on the other page?
How to set localStorage variable in asp.net. Is it
I think setting session variable in page & read variable in javascript of another page is possible. But, if you are looking out for localstorage that won't be. It needs javascript. For session variable e.g.A.aspx
<% Session["username"]="Donald Duck"; %>
B.aspx
>