protected void Page_Load(object sender, EventArgs e) { Rutas ruta = new Rutas(); ScriptResourceDefinition myScriptResDef = new ScriptResourceDefinition(); myScriptResDef.Path = "~/Scripts/jquery-1.4.2.min.js"; myScriptResDef.DebugPath = "~/Scripts/jquery-1.4.2.js"; myScriptResDef.CdnPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"; myScriptResDef.CdnDebugPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.js"; ScriptManager.ScriptResourceMapping.AddDefinition("jquery", null, myScriptResDef); MsjLabel.Text = ""; if (!IsPostBack) { Session["Modificando"] = false; int IdRuta = 0; IdRuta = Util.ObtenerEntero(Request.QueryString["IdRuta"]); if (IdRuta != 0) { ClearButton.Visible = true; SaveButton.Visible = true; IdTextBox.Text = IdRuta.ToString(); } if (ruta.Buscar()) { llenacampo(ruta); } } }
private void BuscarButton_Click(object sender, EventArgs e) { Rutas ruta = new Rutas(); if (IdTextBox.Text.Trim() == "") { RutaerrorProvider.SetError(IdTextBox, "Especifica el Cliente Id"); IdTextBox.Focus(); } else { RutaerrorProvider.Clear(); } if (IdTextBox.TextLength > 0) { if (ruta.Buscar(Validacion.ConvertirToInt(IdTextBox.Text))) { DevolverDatos(ruta); GuardarButton.Enabled = true; EliminarButton.Enabled = true; } else { MessageBox.Show("NO EXISTE RUTA ID "); } } }
protected void buscarRuButton_Click(object sender, EventArgs e) { Rutas ruta = new Rutas(); int id = Utility.ConvierteEntero(idRutaTextBox.Text); if (id > 0) { if (ruta.Buscar(id)) { DevolverDatos(ruta); } else { Utility.ShowToastr(this.Page, "NO EXISTE RUTA ID !", "Message", "Error"); } } }
private void Buscarbutton_Click(object sender, EventArgs e) { Rutas ruta = new Rutas(); if (RutaIdtextBox.TextLength == 0) { ErrorProvider error = new ErrorProvider(); error.Clear(); error.SetError(RutaIdtextBox, "Debe especificar el id"); } else { int id; int.TryParse(RutaIdtextBox.Text, out id); ruta.Buscar(id); RutaIdtextBox.Text = ruta.RutaId.ToString(); NombreRutatextBox.Text = ruta.NombreRuta.ToString(); RutaDetalletextBox.Text = ruta.Detalle.ToString(); //CobradordataGridView.Text = CobradorIdcomboBox; } }