This is a discussion on "Formatting ASP results using Float and CSS" within the Classic ASP section. This forum, and the thread "Formatting ASP results using Float and CSS are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
Formatting ASP results using Float and CSS
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Formatting ASP results using Float and CSS
I’m trying to format my output from a MS Access database. I’m using ASP to retrieve the results from the database and CSS to format the output.
The results contain a thumbnail image that can be enlarged. I would like to alternate these results so that the image is on the right for result 1, left for result 2, right for 3 and so forth. Currently I have the images all floated to the right. This works fine, however it’s not the desired result. A preview can been seen at http://www.bigchetti.com/camelot/larin.asp The formatting code is: <div class="maincontent"> <%Set MyConn = Server.CreateObject("ADODB.Connection") MdbFilePath = Server.MapPath("Databases/camelot.mdb") MyConn.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & MdbFilePath & ";" SQL_query = "SELECT * FROM ProdCamelot WHERE ProdID >=0 AND ProdCategory = 'inflatable'" Set RS = MyConn.Execute(SQL_query) WHILE NOT RS.EOF %> <h3><%=RS("ProdNme")%></h3> <a href="ProdImage/<%=RS("ProdImge")%>"><img border="0" src="ProdImage/<%=RS("ProdImge")%>" width="190" height="150" alt="" class="floatRight"></a> <p><%=RS("ProdDsc")%></p> <p>Price:<%response.write FormatCurrency(RS("ProdCost")) %></p> <% RS.MoveNext WEND %> </div> If anyone has any ideas your feedback would be appreciated. Thanks. |
|
|
|
#2
|
|||
|
|||
|
Problem has been solved. No need to add more divs. The problem was in the ASP code. I needed to add some variables, a counter and an IF ELSE statement.
|
|
#3
|
|||
|
|||
|
Re: Formatting ASP results using Float and CSS
Glad you sorted it out and thank you for posting the answer ... it may help someone else with the same problem
|
![]() |
| Tags |
| asp, css, float, format |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| XML with CSS Formatting | taemurz | Web Page Design | 11 | Jun 23rd, 2007 21:57 |
| text formatting questions | Lchad | Web Page Design | 7 | Jan 27th, 2007 23:05 |
| XSL FO Table formatting | davedran | Other Programming Languages | 0 | Dec 13th, 2006 07:35 |
| Problems with float:left float:right | nvidiajoe | Web Page Design | 8 | Nov 17th, 2006 20:24 |
| Formatting not working | masonbarge | Webforumz Suggestions and Feedback | 4 | Jun 26th, 2006 14:41 |