home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / topratedproducts.ascx < prev    next >
Text File  |  2015-03-28  |  2KB  |  47 lines

  1.  <!-- PAGE -->
  2.         <section class="page-section">
  3.             <div class="container">
  4.                 <h2 class="section-title"><span>Top Rated Products</span></h2>
  5.                 <div class="top-products-carousel">
  6.                     <div class="owl-carousel" id="top-products-carousel">
  7.                   
  8.                   <%
  9.                       Dim image, image1, price, mrp As String
  10.                       mycon.con("Select top 20 lk_tempproducts.* from lk_tempproducts", 1, 1)
  11.                                 While mycon.sql1.Read
  12.                           image = mycon.sql1("imageUrlStr")
  13.                           price = mycon.sql1("price")
  14.                           mrp = mycon.sql1("mrp")
  15.                                  %>
  16.                         
  17.                           <div class="thumbnail no-border no-padding">
  18.                         <div class="media">
  19.                              <a class="media-link"  href="product-details.aspx?productid=<%= mycon.sql1("productid")%>">
  20.                                 <img src="<%= image(0)%>" alt="" style="max-height:165px;min-height:149px;max-width:165px;min-width:149px"/>
  21.                                 <span class="icon-view"><strong><i class="fa fa-eye"></i></strong></span>
  22.                             </a>
  23.                         </div>
  24.                           <div class="caption text-center">
  25.                             <a href="product-details.aspx?productid=<%= mycon.sql1("productid")%>"><%= mycon.sql1("title")%></a>
  26.                             <div class="rating">
  27.                                <%= mycon.sql1("store")%>
  28.                             </div>
  29.                             <div class="price"><ins><%= mrp%></ins> <del><%= price%></del></div>
  30.                             <div class="buttons">
  31.                                 <a class="btn btn-theme btn-theme-transparent btn-wish-list" href="#"><i class="fa fa-heart"></i></a><!--
  32.                                 --><a class="btn btn-theme btn-theme-transparent btn-compare" href="#"><i class="fa fa-exchange"></i></a>
  33.                             </div>
  34.                         </div>
  35.                     </div>
  36.                         
  37. <%
  38. End While
  39. mycon.sql1.Close()
  40.     %>
  41.                  
  42.                   
  43.                     </div>
  44.                 </div>
  45.             </div>
  46.         </section>
  47.         <!-- /PAGE -->