从Javascript分配Session变量

时间:2013-08-08 06:44:03

标签: javascript asp.net session

大家好我正在使用Javascript分配Session变量,如下所示,我正在使用devexpress控件

<script type="text/javascript">
    function f() {
        var v = textBox1.GetValue();
        <%Session["Demo"] = v;%>
        var sValue='<%=Session["Demo"]%>';
        textBox3.SetValue(sValue);
    }
</script>

当我以The name 'v' does not exist in the current context

运行时,这会在网页上出错

有人可以帮助我做什么

1 个答案:

答案 0 :(得分:2)

正如@ The New Idiot所提到的 - 它不能在客户端完成,因为Session对象存储在服务器端。您可以执行此操作的唯一方法是在服务器端请求get/post或甚至ajax请求和设置变量