在客户端提取会话值

在客户端提取会话值

本文介绍了在客户端提取会话值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在使用asp.net应用程序,我的网站正在使用一些会话变量,现在我想知道我的会话值是否在客户端是null但是这样做我从来没有得到空值,只看一下code snippetI'm using working asp.net app, and my site is using some session variables, now I want to know if my session value is null on client side but doing so I never get the null value, just look at the code snippet<script type="text/javascript"> function pageLoad() { $('#' + '<%= button1.ClientID %>').click(function () { var someVariable = '<%=Session["someValue"] %>'; alert(someVariable); }); }</script> 这里会话值为null,我应该在someVariable中得到null但是我总是得到存储在会话中的值,例如,如果someValue = 1那么即使Session [someValue,我总是在someVariable中得到1 ] == null,任何想法?谢谢Here incase of session value is null, I should get null in someVariable but I always get the value that was stored in the session, for example if someValue=1 then I always get 1 in someVariable even if Session["someValue"] == null, any idea ? Thanks推荐答案 这里会话值为null,我应该在someVariable中得到null但是我总是得到存储在会话中的值,例如,如果someValue = 1那么即使Session [someValue,我总是在someVariable中得到1 ] == null,任何想法?谢谢Here incase of session value is null, I should get null in someVariable but I always get the value that was stored in the session, for example if someValue=1 then I always get 1 in someVariable even if Session["someValue"] == null, any idea ? Thanks 这篇关于在客户端提取会话值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-20 07:00