大家好我正在使用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
有人可以帮助我做什么
答案 0 :(得分:2)
正如@ The New Idiot所提到的 - 它不能在客户端完成,因为Session对象存储在服务器端。您可以执行此操作的唯一方法是在服务器端请求get/post
或甚至ajax请求和设置变量