Results 1 to 4 of 4
Thread: Design search results .jsp
- 07-09-2010, 08:31 AM #1
Member
- Join Date
- Jul 2010
- Posts
- 27
- Rep Power
- 0
Design search results .jsp
Hello All,
I am designing now two jsps, the first jsp where the user inputs the name, type, date.
The second jsp, is the jsp where the search results are being showed. So, can you please inform me on how to design the search results page where I will get a grid and inside it, the ID, name, type.
Should that be a straight forward select statement? or how to?
- 07-16-2010, 10:56 AM #2
Member
- Join Date
- Jun 2010
- Location
- Bangalore,India
- Posts
- 70
- Rep Power
- 0
is your problem to display the results which you got out of the query in JSP?
refere the below code snippet.. Hope it helps you..
Java Code:<table> <tr> <td>id</td> <td>name</td> <td>type</td> </tr> <% while(resultSet.next()) { %> <tr> <td><%=resultSet.getString(1)%></td> <td><%=resultSet.getString(2)%></td> <td><%=resultSet.getString(3)%></td> </tr> <% } %> </table>Arun K R,Bangalore,India
:)
- 07-18-2010, 01:02 PM #3
Member
- Join Date
- Jul 2010
- Posts
- 27
- Rep Power
- 0
Thank you
It works.
Now also I have one more difficulty is that how can I pass the ><%=resultSet.getString(1)%> to a new page in the URL or if the user clicks on the id in the table, it will show the view screen information upon the ID as a pop up
- 07-19-2010, 07:18 AM #4
Member
- Join Date
- Jun 2010
- Location
- Bangalore,India
- Posts
- 70
- Rep Power
- 0
Similar Threads
-
Binary search tree search method
By chopo1980 in forum New To JavaReplies: 2Last Post: 12-10-2009, 01:42 AM -
Not able to highlight the search key work in wild card search
By annappa in forum LuceneReplies: 0Last Post: 10-29-2009, 09:28 AM -
Unique Filter on search results
By selva in forum LuceneReplies: 0Last Post: 02-17-2009, 07:32 AM -
make search function ike eclipse search in window->preference
By i4ba1 in forum Advanced JavaReplies: 5Last Post: 08-26-2008, 03:43 PM -
Problem with displaying search results from an array
By BHCluster in forum New To JavaReplies: 4Last Post: 04-24-2008, 03:34 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks