-
Notifications
You must be signed in to change notification settings - Fork 1
/
Ordendeplatillo.aspx
54 lines (52 loc) · 2.21 KB
/
Ordendeplatillo.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Ordendeplatillo.aspx.cs" Inherits="Ordendeplatillo" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
<div>
<p>Por Favor ingrese el ID del platillo que quiere y su id</p>
</div>
<div id="divordenes">
<table id="Tordenes">
<tr class="ordenes">
<td colspan="10" style="text-align:center">
<asp:Label ID="LblClaveplatillo" runat="server" Text="Clave Platillo"></asp:Label>
</td>
<td>
<asp:TextBox ID="TBClavePlatillo" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="ordenes">
<td colspan="10" style="text-align:center">
<asp:Label ID="LBLClavecliente" runat="server" Text="Clave cliente"></asp:Label>
</td>
<td>
<asp:TextBox ID="TBclavecliente" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="ordenes">
<td colspan="10" style="text-align:center">
<asp:Label ID="LblNombrePlatillo" runat="server" Text="Nombre Platillo"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbNombrePlatillo" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="ordenes">
<td colspan="10" style="text-align:center">
<asp:Label ID="Lblcantidad" runat="server" Text="Cantidad"></asp:Label>
</td>
<td>
<asp:TextBox ID="Tbcantidad" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="ordenes">
<td colspan="10" style="text-align:center">
<asp:Button ID="BTNpedirorden" runat="server" Text="Pedir orden " Width="112px" OnClick="BTNpedirorden_Click" />
</td>
<td colspan="10" style="text-align:center">
<asp:Label ID="LblErrorPlatillo" runat="server" Text="" ForeColor="Red"></asp:Label>
</td>
</tr>
</table>
</div>
</asp:Content>