-
Notifications
You must be signed in to change notification settings - Fork 1
/
AltaPlatillos.aspx.cs
38 lines (31 loc) · 1.03 KB
/
AltaPlatillos.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
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
using System.IO;
public partial class AltaPlatillos : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void BtnResgistro_Click(object sender, EventArgs e)
{
int ClaveRestaurante = int.Parse(TbClaveRestaurente.Text.Trim());
String NombrePlatillos = TbNombrePlatillo.Text.Trim();
String Descripcion = TbDescripcion.Text;
int Precio = int.Parse(TbPrecio.Text);
int regresarVal = DataAccsesClientes.AltaPlatillo(ClaveRestaurante,NombrePlatillos, Descripcion, Precio);
if (regresarVal > 0)
{
LblErrorPlatillo.ForeColor = Color.Chocolate;
LblErrorPlatillo.Text = "Se Ha Ingresado un Platillo";
}
else
{
LblErrorPlatillo.Text = "Error en Base De Datos, Comunicarse Con Nosotros";
}
}
}