0

我希望将我的login.jsp页面中的长值作为隐藏字段从 bean 发送到 struts 操作。我已经完成了用户名和密码这两个属性的映射等,对他们来说,程序运行良好。现在我想发送一个时间值作为名为“requesttime”的隐藏属性,以将登录时间存储在表中以进行安全检查。但我一直无法弄清楚如何做到这一点。这是我卡住的jsp页面的一部分。

<%long time = System.currentTimeMillis();%>
<html:form action="login">
    <bean:message key="login.username"/>
    <html:text property="username"/><br/>
    <bean:message key="login.password"/>
    <html:password property="password"/><br/>
    <%--I wish to insert "time" as property "requesttime" as hidden here--%>
    <html:submit value="login"/>     
</html:form><hr/>
<html:errors/>

请不要介意我的无知。感谢您提供的任何帮助。

4

1 回答 1

0

使用脚本,您可以获得登录时间。现在执行
< input type="hidden" id="time"> 并输入你得到的值。使用脚本会更好。然后在 servlet 中调用 request.getParameter("time") 并存储为字符串或整数。你的选择。希望这可以帮助.....

于 2013-06-17T04:52:47.490 回答