我可以使用 javascript 代码将一些数据发布到 jsp web 表单吗?

发布于 2024-11-17 19:51:09 字数 259 浏览 2 评论 0原文

我有 javascript 代码,能够使用 Windows Live 身份验证对用户进行身份验证。登录后,将向用户显示一条简单的消息。

我想要的是该消息向用户显示 10 秒,然后用户的电子邮件 ID 加上指示成功登录的标志,被发布到在同一浏览器窗口中打开的 jsp 页面...可以这可以使用 Javascript 或其他方式完成吗?

如果无法将这些值传递给 jsp 表单,是否可以将这些值存储在 jsp 会话变量中(以便其他 JSP 能够使用这些值)? 谢谢, 阿尔温德.

I have with me javascript code that is able to authenticate users with Windows Live Authentication. After logon, a simple message is displayed to the user.

What I want is that the message is displayed to the user for 10 seconds, and after that the email ID of user plus a flag that indicates successful login, are posted to a jsp page which is opened in the same browser window... Can this be done using Javascript or some other way?

If it is not possible to pass these values to a jsp form, alternatively can these values be stored in jsp session variables (so that other JSPs are able to use these values)?
Thanks,
Arvind.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-11-24 19:51:09

你可以通过使用来做到这一点

location.replace("resultPage.jsp?emailId="+emailID+"success=true");

现在您可以使用以下方式访问这些值:

request.getParameter("emailId");

request.getParameter("成功");

You can do it by using

location.replace("resultPage.jsp?emailId="+emailID+"success=true");

Now you can access these values using:

request.getParameter("emailId");

request.getParameter("success");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文