-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOrdendeplatillo.aspx.cs
36 lines (30 loc) · 1.01 KB
/
Ordendeplatillo.aspx.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
public partial class Ordendeplatillo : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void BTNpedirorden_Click(object sender, EventArgs e)
{
int ClavePlatillo = int.Parse(TBClavePlatillo.Text.Trim());
int ClaveCliente = int.Parse(TBclavecliente.Text.Trim());
String NombrePlatillo = TbNombrePlatillo.Text.Trim();
int Cantidad = int.Parse(Tbcantidad.Text.Trim());
int regresarVal = DataAccsesClientes.PedirOrdenes(ClavePlatillo, ClaveCliente, NombrePlatillo, Cantidad);
if (regresarVal > 0)
{
LblErrorPlatillo.ForeColor = Color.Chocolate;
LblErrorPlatillo.Text = "Su Orden ha Sido Exitosa";
}
else
{
LblErrorPlatillo.Text = "Error en Base De Datos, Comunicarse Con Nosotros";
}
}
}