Before using JSP tags in opencms, you must declare tags in the JSP file and add the following content at the beginning of the JSP file:
<% @ Taglib prefix = " CMS " Uri = " Http://www.opencms.org/taglib/cms " %> <CMS: User> label
This label is used to access the basic information of the current user. The basic information of the user is maintained in "User Management" in the "management" view. The usage is as follows:
<CMS: user property = "firstname"/> get the current user's "name" (firstname)
<CMS: user property = "lastname"/> get the current user's "last name" (lastname)
<CMS: user property = "name"/> obtain the current user's "Logon Name" (name)
<CMS: user property = "email"/> get the current user's "email address" (email)
<CMS: user property = "street"/> get the current user's "street address)
<CMS: user property = "Zip"/> obtain the current user's "zip code)
<CMS: user property = "Description"/> obtain the "Description" of the current user)
<CMS: user property = "otherstuff"/> get the "other user-defined information" (otherstuff) of the current user)