我如何将文本框中的值分配到scriptlet变量中,并将值设置为会话变量

时间:2013-10-30 17:52:26

标签: html session-variables jsp-tags scriplets

如何将文本框中的值分配到scriptlet变量中,并将值设置为会话变量....

<body>
.
.
.

<input type="text" name="txtValue" id="txtValue">
.
.
.


<%
String valueString="txtValue";

request.getSession().setSession("setValue","valueString");

%>

</body>

这里“txtValue”是一个文本框。我想获取存储在文本框中的值,并希望将值赋给scriptlet变量valueString.I也想将值放在session属性中。

什么是正确的语法??????请帮忙......

1 个答案:

答案 0 :(得分:0)

你正试图混合服务器端和客户端代码..因为jsp内容在java脚本之前加载,这是一项艰巨的工作。

但您可以尝试使用:

<% request.getSession().setSession("setValue","
<script type="text/javascript" >
        document.getElementById("txtValue").value;
    </script> 
<% ");%>

我持怀疑态度,但可能有效