| Author |
Showing products in grid
|
nilu chan
Greenhorn
Joined: Aug 31, 2010
Posts: 15
|
|
I have a JSP page where I am showing all the products that fall under a specific category. The problem is that all of them either end up showing either vertically or horizontally based on whether I loop my "td" or "tr". I want to show them in grid where 3 products are in row 1, another 3 in row 2 and so on. Any idea on how this can be achieved?
ProductController.java
products.jsp
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56185
|
|
First, decide what the HTML needs to look like before writing the JSP. The purpose of the JSP is to create the HTML that will be sent to the page. So get your target HTML figured out, and then write the JSP to create it.
Second, stop using Java scriptlets in a JSP. Scriptlets are obsolete and discredited. Using them makes you look like a slacker. Please read this JspFaq entry.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Showing products in grid
|
|
|