home *** CD-ROM | disk | FTP | other *** search
/ 202.53.64.216 / 202.53.64.216.tar / 202.53.64.216 / janahitha / AdsHoardingsTypeListPrev.asp < prev    next >
Text File  |  2004-11-26  |  3KB  |  64 lines

  1. <!-- #include file="AdsOpenConn.asp" -->
  2. <%
  3.     TblHeadBGColor="#DDF0DF"
  4.     TblHeadFGColor="#000000"
  5.     TblBGColor="#ffffff"
  6.     TblFGColor="#000000"
  7. %>
  8. <html>
  9.     <head>
  10.         <title> Janahitha Ads - Welcome </title>
  11.         <meta name="author" content="Jagadish,Gopi">
  12.     </head>
  13.     <body bottommargin=0 topmargin=0 leftmargin=0 rightmargin=0 marginheight=0 marginwidth=0 bgcolor=#ffffff>
  14.         <!-- #include file="AdsTop.asp" --> 
  15.         <center>
  16.         <table width=100% cellpadding=0 cellspacing=0 border=0 height=100%>
  17.         <tr>
  18.             <td width=150 align=center valign=top bgcolor="#FFFFFF">
  19.                 <!-- #include file="AdsLeft.asp" -->
  20.             </td>
  21.             <td width=630 align=center valign=top bgcolor="#ffffff">
  22.                 <br> <b> <font face="verdana" color="#566336"> Types Of Hoardings</font> </b> <br> <br>
  23.                 <table cellpadding=0 cellspacing=0 border=0>
  24.                 <tr><td bgcolor="#47AF59">
  25.                 <table cellpadding=1 cellspacing=1 border=0 width=570>
  26.                 <tr>
  27.                     <th bgcolor="<%=TblHeadBGColor%>"> <font face=verdana size=2 color="<%=TblHeadFGColor%>"> SNo </font> </th>
  28.                     <th bgcolor="<%=TblHeadBGColor%>"> <font face=verdana size=2 color="<%=TblHeadFGColor%>"> Hoarding Type </font> </th>
  29.                     <th bgcolor="<%=TblHeadBGColor%>"> <font face=verdana size=2 color="<%=TblHeadFGColor%>"> Width X Height </font> </th>
  30.                     <th bgcolor="<%=TblHeadBGColor%>"> <font face=verdana size=2 color="<%=TblHeadFGColor%>"> Material </font> </th>
  31.                     <th bgcolor="<%=TblHeadBGColor%>"> <font face=verdana size=2 color="<%=TblHeadFGColor%>"> Rent </font> </th>
  32.                 </tr>
  33. <%
  34.     set rs = server.createobject("adodb.recordset")
  35.     rs.open "select *from HoardingTypeMaster where HoardingTypeStatus=1", con
  36.     sno = 0
  37.     while not rs.eof
  38.         sno = sno + 1
  39. %>
  40.                 <tr>
  41.                     <td bgcolor="<%=TblBGColor%>" align=right> <font face="ms sans serif" size=2 color="<%=TblFGColor%>"> <%=sno%>  </font> </td>
  42.                     <td bgcolor="<%=TblBGColor%>"> <a href="AdsHoardingsList.asp?htypeid=<%=rs("HoardingTypeId")%>&list=ns"><font face="ms sans serif" size=2 color="<%=TblFGColor%>"><%=rs("HoardingTypeName")%></font></a> </td>
  43.                     <td bgcolor="<%=TblBGColor%>" align=center> <font face="ms sans serif" size=2 color="<%=TblFGColor%>"> <%=rs("HoardingWidth")%> X <%=rs("HoardingHeight")%> </font> </td>
  44.                     <td bgcolor="<%=TblBGColor%>" align=center> <font face="ms sans serif" size=2 color="<%=TblFGColor%>"> <%=rs("HoardingMaterial")%> </font> </td>
  45.                     <td bgcolor="<%=TblBGColor%>" align=right> <font face="ms sans serif" size=2 color="<%=TblFGColor%>"> <%=formatnumber(rs("HoardingRentalPrice"),2)%>   </font> </td>
  46.                 </tr>
  47. <%
  48.         rs.movenext
  49.     wend
  50.     rs.close
  51.     set rs = nothing
  52. %>
  53.                 </table>
  54.                 </td> </tr>
  55.                 </table>
  56.                 <br>
  57.             </td>
  58.         </tr>
  59.         </table>
  60.         </center>
  61.         <!-- #include file="AdsBottom.asp" -->
  62.     </body>
  63. </html>
  64. <!-- #include file="AdsCloseConn.asp" -->