home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / manage / selectstore.aspx < prev    next >
Text File  |  2015-03-09  |  2KB  |  56 lines

  1. <%@ Page Language="VB" Debug="true" %>
  2. <%@ Import Namespace="System.Data" %>
  3. <%@ Import Namespace="System.Data.OleDB" %>
  4. <%@ Import namespace="System.IO" %>
  5. <script runat="server">
  6. Dim mycon As New conValue()
  7. Sub page_load()
  8. End Sub
  9.  
  10. </Script>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  15. <title>Untitled Document</title>
  16. <style type="text/css">
  17. body {
  18.     margin-left: 0px;
  19.     margin-top: 0px;
  20.     margin-right: 0px;
  21.     margin-bottom: 0px;
  22. }
  23. </style>
  24. <link href="ncss.css" rel="stylesheet" type="text/css" />
  25. </head>
  26.  
  27. <body>
  28. <table width="100%" border="0" cellspacing="5" cellpadding="0">
  29.  <tr>
  30.     <td height="30" colspan="3" align="center" bgcolor="#DBDBDB" class="text1"><strong>SELECT A STORE TO ADD PRODUCTS</strong></td>
  31.   </tr>
  32.  <%
  33.  Dim i As Integer = 1
  34.  mycon.con("Select * from lk_stores where usedatafrom = '1'",1,1)
  35.  While mycon.sql1.Read
  36.  %>
  37.  
  38.   <tr>
  39.     <td width="4%" bgcolor="#F0F0F0" class="text1"> <%= i %></td>
  40.     <td width="47%" height="30" bgcolor="#F0F0F0" class="text1"> <%= mycon.sql1("storename")%></td>
  41.      <td width="49%" bgcolor="#F0F0F0" class="text1"> <a href="addflipkart.aspx?store=<%= ucase(trim(mycon.sql1("storename"))) %>">Add Products</a></td>
  42.   </tr>
  43.   <%
  44.   i = i + 1
  45.   End While
  46.   mycon.sql1.Close()
  47.   %>
  48.    <tr>
  49.     <td width="4%" bgcolor="#F0F0F0" class="text1"> <%= i %></td>
  50.     <td width="47%" height="30" bgcolor="#F0F0F0" class="text1"> OMG</td>
  51.      <td width="49%" bgcolor="#F0F0F0" class="text1"> <a href="addflipkart.aspx?store=OMG">Add Products</a></td>
  52.   </tr>
  53. </table>
  54. </body>
  55. </html>
  56.