|
Home > Archive > WebSphere Portal Server > March 2004 > Display username after logging into Portal
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Display username after logging into Portal
|
|
| ariffzi 2004-03-24, 2:34 am |
| Hai everybody,
Can anybody help me to display user name after user log into the portal. In version WPS 4.1, the username is displayed on the banner. How about WPS 5.0?...anybody know about this?
| |
| Oliver Meyer 2004-03-24, 10:38 am |
| This is not in the theme JSPs any longer. If you like to display the
user name after login, you have to put the additional tags into your
JSPs. I did a test on my system, where I put following code in
ToolBarInclude.jsp:
<wps:if loggedIn="yes" screen="Home,LoggedIn">
<wps:text key="welcome" bundle="nls.engine">
<wps:textParam><wps:user
attribute="fullName"/></wps:textParam>
</wps:text>
</wps:if>
Basically, this is the code that was in Banner.jsp in a 4.1 portal
system.
After I log in, the user name is displayed.
oliver
ariffzi wrote:
>
> Hai everybody,
>
> Can anybody help me to display user name after user log into the portal. In version WPS 4.1, the username is displayed on the banner. How about WPS 5.0?...anybody know about this?
|
|
|
|
|