欢迎页面上没有用户名

发布于 2024-10-19 22:39:30 字数 513 浏览 1 评论 0原文

使用以下代码确定用户名未显示在欢迎页面上的原因?

String custId = (String) session.getAttribute("customerId");
String emailId = (String) session.getAttribute("emailId");
String phoneNumber = (String) session.getAttribute("phoneNumber");
<body>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table width="70%" align="center" border="1">
<tr>
<td align="center">Welcome to Going Green !</td>
</tr>

identify the reason why the username is not being displayed on the welcome page using the following code?

String custId = (String) session.getAttribute("customerId");
String emailId = (String) session.getAttribute("emailId");
String phoneNumber = (String) session.getAttribute("phoneNumber");
<body>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<table width="70%" align="center" border="1">
<tr>
<td align="center">Welcome to Going Green !</td>
</tr>

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

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

发布评论

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

评论(1

那片花海 2024-10-26 22:39:30
  • 首先,您必须确保其他进程将带有“customerId”、“emailId”、“phoneNumber”键的属性放入会话中。
  • 您的 HTTP 会话未超时
  • 无人清除 HTTP 会话
  • 您访问的浏览器必须启用 cookie,否则不会记住任何会话
  • First of all you have to ensure that some other process put the attribute with key "customerId", "emailId", "phoneNumber" into the session.
  • Your HTTP session is not time out
  • Nobody clear the HTTP session
  • The browser you are accessing with must enable cookie, otherwise no session will be remembered
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文