How do I do a Search Result Page where each result is a link ?

I'm developing a web based internship control as a college project.

The student can search for internship positions, offered by some companies registered in the system.

My idea is this: The student searchs for internship positions, in this search they choose some parameters, like what they want to do, and some areas that they have knowledge on, and other things.

The search result shows a page with the internship positions corresponding to the chosen parameters. Each result will be a link to the same one page but they'll have their own ID. The result page will have static texts and those will load from the database according to the chosen result's ID.

For example: Search.jsp will have a form with search parameters.

SearchResult.jsp - will have the links of search results.

ShowResult.jsp - will have the information of a result from a database.

My problem is: how do I do that exactly?

[948 byte] By [LeandroGuidaa] at [2007-10-3 10:10:09]
# 1

Get the list of internship

Iterate through the list

<c:forEach var ="inter" items="${inter_list}">

//use table or list

<a target ="blank" href ='<c:out value="${inte.url}"/>'><c:out value="${inte.name}"/></a>

</c:forEach>

Et Voila

http://www.skillipedia.com

skillipediaa at 2007-7-15 5:30:02 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
There's anyway doing this on a java class ? (Like JavaBean).. I'm using Studio Creator to do it..
LeandroGuidaa at 2007-7-15 5:30:02 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...