Hi Bhanu,

      I am not sure if I understand you correctly, if you have the data then
for displaying all you need to do is write HTML for displaying it into a text
field.
 for eg.
let's say jobID is a string value you want to display into a text field...
<%
// get the value or an array, or vector of values for displaying
String jobID = request.getParameter("jobID");
%>

     In the html part of the JSP file something like the following :-
<html>
....
<body>
...
<form name="myForm" action="/path_to_jsp_or_servlet">
....
 <input type="text" name="jobID" value="<%=jobID%>">
...
</form>
</body>
</html>
 which can also be inside a loop for displaying a table of data, in multiple
columns, another approach could be to use swing and applets and use JTable
class for displaying the data.


   hth,

   Dharmendra
On Thursday 16 May 2002 07:17 pm, you wrote:
> Also, I
> should be able to add new record to it.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to