Advertisement
Guest User

Untitled

a guest
Apr 29th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 5.00 KB | None | 0 0
  1. <div class="col-lg-3">
  2.  
  3.           <style>
  4.                 body{margin:10px 10px 10px 10px }
  5.                 .divIzq
  6.                 {
  7.                     width:20%;
  8.                     height:20px;
  9.                     float:left
  10.                 }
  11.                 .divDer
  12.                 {
  13.                     width:80%;
  14.                     height:20px;
  15.                     float:left
  16.                 }
  17.                 .container
  18.                 {
  19.                     width:100%;
  20.                 }
  21.                 .divPublicacion
  22.                 {
  23.                     width:200px;
  24.                     height:300px;
  25.                     margin:10px 10px 10px 10px
  26.                 }
  27.                 .fuenteTitulo
  28.                 {
  29.                     font-family: Arial;
  30.                     font-weight: bold;
  31.                 }
  32.                 .fuenteTexto
  33.                 {
  34.                     font-family: Arial;
  35.                 }
  36.             </style>
  37.           <div class="container">
  38.                 <div class="divIzq">
  39.                     <div>
  40.                         <asp:Label ID="lblCategoria" runat="server" Text="Categoría" class="fuenteTitulo"></asp:Label>
  41.                         <br />
  42.                         <asp:DropDownList ID="ddlCategoria" runat="server" Width="146px" class="fuenteTexto">
  43.                         </asp:DropDownList>
  44.                         <br /><br />
  45.                     </div>
  46.                     <div>
  47.                         <asp:Label ID="lblFecha" runat="server" Text="Fecha publicación" class="fuenteTitulo"></asp:Label>
  48.                         <br />
  49.                         <asp:RadioButtonList ID="rblFecha" runat="server" class="fuenteTexto">
  50.                             <asp:ListItem Text="24 Horas"></asp:ListItem>
  51.                             <asp:ListItem Text="7 Días"></asp:ListItem>
  52.                             <asp:ListItem Text="30 Días"></asp:ListItem>
  53.                             <asp:ListItem Text="Culaquier fecha"></asp:ListItem>
  54.                         </asp:RadioButtonList>
  55.                         <br />
  56.                     </div>
  57.                     <div>
  58.                         <asp:Label ID="lblPrecio" runat="server" Text="Precio" class="fuenteTitulo"></asp:Label>
  59.                         <br />
  60.                         <asp:Label ID="lblMin" runat="server" Text="Min: " class="fuenteTexto"></asp:Label>
  61.                         <asp:TextBox ID="tbMin" runat="server" Width="50px" class="fuenteTexto"></asp:TextBox>
  62.                         <asp:Label ID="lblMax" runat="server" Text="Max: " class="fuenteTexto"></asp:Label>
  63.                         <asp:TextBox ID="tbMax" runat="server" Width="50px" class="fuenteTexto"></asp:TextBox>
  64.                         <br /><br />
  65.                     </div>
  66.                     <div>                
  67.                         <asp:Label ID="lblDistancia" runat="server" Text="Distancia" class="fuenteTitulo"></asp:Label>
  68.                         <br />
  69.                         <asp:RadioButtonList ID="RadioButtonList1" runat="server" class="fuenteTexto">
  70.                             <asp:ListItem>5km o menos</asp:ListItem>
  71.                             <asp:ListItem>10km o menos</asp:ListItem>
  72.                             <asp:ListItem>25km o menos</asp:ListItem>
  73.                             <asp:ListItem>50km o menos</asp:ListItem>
  74.                             <asp:ListItem>Cualquiera</asp:ListItem>
  75.                         </asp:RadioButtonList>
  76.                         <br />
  77.                     </div>                  
  78.                     <div>
  79.                         <asp:Label ID="lblValoracion" runat="server" Text="Valoración usuario" class="fuenteTitulo"></asp:Label>
  80.                         <br />
  81.                         <asp:RadioButtonList ID="rblValoracion" runat="server" class="fuenteTexto">
  82.                             <asp:ListItem>4 o más</asp:ListItem>
  83.                             <asp:ListItem>3 o más</asp:ListItem>
  84.                             <asp:ListItem>2 o más</asp:ListItem>
  85.                             <asp:ListItem>1 o más</asp:ListItem>
  86.                             <asp:ListItem>Todos</asp:ListItem>
  87.                         </asp:RadioButtonList>
  88.                         <br />
  89.                     </div>
  90.                      <div>
  91.                         <asp:Label ID="lblOtras" runat="server" Text="Otras opciones" class="fuenteTitulo"></asp:Label>
  92.                         <br />
  93.                         <asp:CheckBoxList ID="cblOtras" runat="server" class="fuenteTexto">
  94.                             <asp:ListItem>Negociable</asp:ListItem>
  95.                             <asp:ListItem>Envio</asp:ListItem>
  96.                         </asp:CheckBoxList>
  97.                         <br />
  98.                     </div>
  99.                     <div>
  100.                         <asp:Button ID="btnLimpiar" runat="server" Text="Limpiar filtros" class="fuenteTexto"/>
  101.                         <br />
  102.                     </div>
  103.                 </div>
  104.  
  105.             </div>
  106.  
  107.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement