0

大家好,我正在使用 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

所以有人能帮我做什么吗

4

1 回答 1

2

正如@The New Idiot 提到的 - 它不能在客户端完成,因为 Session 对象存储在服务器端。您可以做到的唯一方法是在某些请求get/post甚至 ajax 请求上并在服务器端设置变量

于 2013-08-08T06:52:19.383 回答