29 lines
935 B
C#
29 lines
935 B
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Collections;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using System.Web.UI.HtmlControls;
|
|
|
|
public partial class AplicacionDeposito : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
protected void ibtnProcesar_Click(object sender, ImageClickEventArgs e)
|
|
{
|
|
//Aqui va el codigo que implementa la funcionalidad del proceso
|
|
this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Mensaje", "alert('El depósito ha sido aplicado correctamente')", true);
|
|
}
|
|
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
|
|
{
|
|
this.txtCodRecaudador.Text = "";
|
|
this.txtNumRemesa.Text = "";
|
|
this.txtRemesaAyA.Text = "";
|
|
}
|
|
}
|