<%-- profile.jsp Alan Pinder - April 14th 2005 Shows a user's profile (depending on what details they have elected to make visible) This is the welcome/index page. It's the first page the user sees This page shows the user's private messages. From here they can compose new messages, view their messages, and delete them. Classes Used: None Attributes Used: None Parameters Get: loginMessage - Message to display --%> <%-- Standard page declarations --%> <%@ page import="apz.db.*" %> <%@ page session="true" %> <%@ page errorPage="error.jsp" %> <% String userName = request.getParameter("userName"); if (userName == null) throw new dbException(null, "'User name' is null"); dbUser currentUser = db.getUser(userName); %>
F