Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 7.48 KB | None | 0 0
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
  3.  
  4.     <div class="container">
  5.         <div class="row">
  6.             <div class="col-xs-6">
  7.                 <div class="row">
  8.                     <div class="col-xs-2">
  9.                         Име:
  10.                     </div>
  11.                     <div class="col-xs-4">
  12.                         <asp:TextBox ID="txtIme" runat="server"></asp:TextBox>
  13.                     </div>
  14.                 </div>
  15.                 <div class="row">
  16.                     <div class="col-xs-2">
  17.                         Презиме:
  18.                     </div>
  19.                     <div class="col-xs-4">
  20.                         <asp:TextBox ID="txtPrezime" runat="server"></asp:TextBox>
  21.                     </div>
  22.                 </div>
  23.                 <div class="row">
  24.                     <div class="col-xs-2">
  25.                         Од:
  26.                     </div>
  27.                     <div class="col-xs-4">
  28.                         <asp:DropDownList ID="ddlOd" runat="server">
  29.                             <asp:ListItem>Македонска Каменица</asp:ListItem>
  30.                             <asp:ListItem>Кочани</asp:ListItem>
  31.                             <asp:ListItem>Пирава</asp:ListItem>
  32.                             <asp:ListItem>Брајковци</asp:ListItem>
  33.                             <asp:ListItem>Прилеп</asp:ListItem>
  34.                             <asp:ListItem>Кратово</asp:ListItem>
  35.                             <asp:ListItem>Штип</asp:ListItem>
  36.                         </asp:DropDownList>
  37.                     </div>
  38.                 </div>
  39.                 <div class="row">
  40.                     <div class="col-xs-2">
  41.                         До:
  42.                     </div>
  43.                     <div class="col-xs-4">
  44.                         <asp:DropDownList ID="ddlDo" runat="server">
  45.                             <asp:ListItem>Македонска Каменица</asp:ListItem>
  46.                             <asp:ListItem>Кочани</asp:ListItem>
  47.                             <asp:ListItem>Валандово</asp:ListItem>
  48.                             <asp:ListItem>Прилеп</asp:ListItem>
  49.                             <asp:ListItem>Штип</asp:ListItem>
  50.                             <asp:ListItem>Кратово</asp:ListItem>
  51.                         </asp:DropDownList>
  52.                     </div>
  53.                 </div>
  54.                 <div class="row">
  55.                     <div class="col-xs-2">
  56.                         Датум на тргање:
  57.                     </div>
  58.                     <div class="col-xs-4">
  59.                         <asp:DropDownList ID="ddlDen" runat="server"></asp:DropDownList>
  60.                         <asp:DropDownList ID="ddlMesec" runat="server"></asp:DropDownList>
  61.                         <asp:DropDownList ID="ddlGodina" runat="server"></asp:DropDownList>
  62.                     </div>
  63.                 </div>
  64.                 <div class="row">
  65.                     <div class="col-xs-2">
  66.                         Време на тргање:
  67.                     </div>
  68.                     <div class="col-xs-4">
  69.                         <asp:DropDownList ID="ddlVreme" runat="server"></asp:DropDownList>
  70.                     </div>
  71.                 </div>
  72.                 <div class="row">
  73.                     <div class="col-xs-2">
  74.                         Превозно средство:
  75.                     </div>
  76.                     <div class="col-xs-4">
  77.                         <asp:ListBox ID="lstSredstvo" runat="server">
  78.                             <asp:ListItem>Авион</asp:ListItem>
  79.                             <asp:ListItem>Воз</asp:ListItem>
  80.                             <asp:ListItem>Автобус</asp:ListItem>
  81.                         </asp:ListBox>
  82.                     </div>
  83.                 </div>
  84.                 <div class="row">
  85.                     <div class="col-xs-2">
  86.                         Зона:
  87.                     </div>
  88.                     <div class="col-xs-4">
  89.                         <asp:RadioButtonList ID="rblZona" runat="server">
  90.                             <asp:ListItem>Пушачи</asp:ListItem>
  91.                             <asp:ListItem>Непушачи</asp:ListItem>
  92.                         </asp:RadioButtonList>
  93.                     </div>
  94.                 </div>
  95.                 <div class="row">
  96.                     <div class="col-xs-2">
  97.                         Класа:
  98.                     </div>
  99.                     <div class="col-xs-4">
  100.                         <asp:RadioButtonList ID="rblKlasa" runat="server">
  101.                             <asp:ListItem>Економска</asp:ListItem>
  102.                             <asp:ListItem>Бизнис</asp:ListItem>
  103.                         </asp:RadioButtonList>
  104.                     </div>
  105.                 </div>
  106.                 <div class="row">
  107.                     <div class="col-xs-2">
  108.                         Послуга:
  109.                     </div>
  110.                     <div class="col-xs-4">
  111.                         <asp:CheckBoxList ID="cblPosluga" runat="server">
  112.                             <asp:ListItem>Пијалок</asp:ListItem>
  113.                             <asp:ListItem>Кафе</asp:ListItem>
  114.                             <asp:ListItem>Оброк</asp:ListItem>
  115.                         </asp:CheckBoxList>
  116.                     </div>
  117.                 </div>
  118.                 <div class="row">
  119.                     <div class="col-xs-2"></div>
  120.                     <div class="col-xs-4">
  121.                         <asp:Button ID="btnPodnesi" runat="server" Text="Поднеси" />
  122.                     </div>
  123.                 </div>  
  124.             </div>
  125.             <div class="col-xs-6">
  126.                 <asp:Panel ID="pnlPanela1" runat="server">
  127.                     Почитуван патнику<br />
  128.                     <asp:Label ID="lblPatnik" runat="server" Text=""></asp:Label><br />
  129.                     издадена ви е карта за<br />
  130.                     <asp:Label ID="lblSredstvo" runat="server" Text=""></asp:Label><br />
  131.                     со почетна дестинација<br />
  132.                     <asp:Label ID="lblOd" runat="server" Text=""></asp:Label><br />
  133.                     и крајна дестинација<br />
  134.                     <asp:Label ID="lblDo" runat="server" Text=""></asp:Label><br />
  135.                     Времето на поаѓање е <br />
  136.                     <asp:Label ID="lblVreme" runat="server" Text=""></asp:Label><br />
  137.                     Вашето место на седење ќе биде во зоната<br />
  138.                     за <asp:Label ID="lblZona" runat="server" Text=""></asp:Label> во <asp:Label ID="lblKlasa" runat="server" Text=""></asp:Label> класа<br />
  139.                     и во текот на патувањето ќе бидете послужени<br />
  140.                     со <asp:Label ID="lblPosluga" runat="server" Text=""></asp:Label><br />
  141.                     <asp:Image ID="Image1" runat="server" /><br />
  142.                     Ви благодариме на довербата и ви<br />
  143.                     посакуваме среќен пат!<br />
  144.                 </asp:Panel>
  145.             </div>
  146.         </div>
  147.     </div>
  148.  
  149. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement