Home Answers Viewqa JSP-Servlet How to get data datagrid ?

 
 


hong
How to get data datagrid ?
2 Answer(s)      a year and 11 months ago
Posted in : JSP-Servlet

How to get data datagrid in jsp from arrayList in java?

Code in java

CategoryDao dao =  new CategoryDao();
ArrayList<Categories> lstCategory = new ArrayList<Categories>();
lstCategory = dao.getListCategories();
request.setAttribute ("lstCategory", lstCategory);

<table border="0"  cellpadding="5" cellspacing="1">
 <tr >
        <td bgcolor="#888888" width="120" align="center" class="typeA"><font color="#FFFFFF">Update/Delete</font></td>
        <td bgcolor="#888888" width="110" align="center" class="typeAL"><font color="#FFFFFF">id_Category</font></td>
        <td bgcolor="#888888" width="80" align="center" ><font color="#FFFFFF">Name Category</font></td>                        
 </tr>
 <tr bgcolor="#F0F6DC" align="left">
    <td class="typeA"><center><a href="Category.jsp"><input type="submit" value="Update"></a> <input type="button" value="Delete" onclick="javascript:window.location='kaiin_r_kakunin.html';"></center></td>
 <td value="${categoy.CategoryID}" class="typeAL">001</td>
    <td value="${categoy.Name} class="typeAL">Computer</td>

                        </tr>                       
</table>
View Answers

June 18, 2011 at 11:36 AM


Please go through the following link:

http://www.roseindia.net/jsp/servlet-jsp-data-list.shtml


June 18, 2011 at 1:37 PM


thanks. Ok.









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.