本文介绍了asp.net中的javascript中的会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过javascript函数为会话分配一个值

i want to assign a value to a session from javascript function

<%Session["Test"] = "Welcome Mamu";%> 




上面的代码将正常工作.但是我想从像
这样的变量中赋值




the above code will work properly. but i want to assign a value from a variable like

var strTest=document.getElementById(''DropDownList1'').value;
<%Session["Test"] = "''+ strTest +''";%>




这很不错,但是会话中保存的值是"+ strTest +",而不是strTest
的值
是否有人知道解决方案请尽快回复我




this is woking but the value saved in the session is ''+ strTest +'' not the value of strTest

is anybody know the solution plz reply me soon

推荐答案




这篇关于asp.net中的javascript中的会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 08:19