how to do this in jsp? Where User will be java Servlet handling user profile by id? This is way how would I write in php:
Login name lastname
user1 name1 lastname1 <a href="User?id=1>profile</a>
user2 name2 lastname2 <a href="User?id=2>profile</a>
user3 name3 lastname3 <a href="User?id=3>profile</a>
I want to do it jsp it will be probably same, but is I just need to get servlet User.java and somehow information about the user depending on the line. The users are also printed from java bean user, so I may post all the java bean user. Is it posible? Is it posible to post parameter to the servlet some other way then by the get parameter by post or some redirect?