-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBorrarPlatillos.aspx
47 lines (41 loc) · 1.72 KB
/
BorrarPlatillos.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="BorrarPlatillos.aspx.cs" Inherits="BorrarPlatillos" %>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
<p>
</p>
<div>
<table id="altaplatillosDIV">
<tr class="Registrarp">
<td>
<asp:Label ID="LblBorrar" runat="server" Text="Nombre del Platillo"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbBorrar" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="Registrarp">
<td style="text-align:center">
<asp:Label ID="LblContraseñaplatillos" runat="server" Text="Contraseña"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbContraseñaPlatillos" TextMode="Password" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="Registrarp">
<td style="text-align:center">
<asp:Label ID="LblConfirmarPlatillo" runat="server" Text="Confirmar"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbConfirmarplatillo" TextMode="Password" runat="server"></asp:TextBox>
</td>
</tr>
<tr class="Registrarp">
<td colspan="10" style="text-align:center">
<asp:Button ID="BtnBorrar" runat="server" Text="Borrar Platillo " OnClick="BtnResgistro_Click" Width="112px" />
</td>
<td colspan="10" style="text-align:center">
<asp:Label ID="LblErrorBorrado" runat="server" Text="" ForeColor="Red"></asp:Label>
</td>
</tr>
</table>
</div>
</asp:Content>