You mean that this:
<%
String link = "";
String user = (String)session.getAttribute("user");
if (user!=null) {
link = user + ".jsp";
} else {
// do something else since the user is not in the session
}
%>
<a href = "<%=link%>" > some text </a>
Is not what you want?
javaAddict
Nearly a Senior Poster
3,329 posts since Dec 2007
Reputation Points: 1,014
Solved Threads: 448