大家好,我正在使用 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
所以有人能帮我做什么吗