You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
1.1 KiB

using System;
using Swift.web.Library;
namespace Swift.web.Remit.Transaction.PayAcDepositV3.PaidTransaction
{
public partial class Manage : System.Web.UI.Page
{
private readonly SwiftLibrary _sl = new SwiftLibrary();
private const string ViewFunctionId = "20122500";
protected void Page_Load(object sender, EventArgs e)
{
Authenticate();
if (!IsPostBack)
{
fromDate.Text = DateTime.Now.ToString("MM/dd/yyyy");
toDate.Text = DateTime.Now.ToString("MM/dd/yyyy");
}
}
private void Authenticate()
{
_sl.CheckAuthentication(ViewFunctionId);
}
protected void btnSearch_Click(object sender, EventArgs e)
{
Response.Redirect("Pending.aspx?fromDate=" + fromDate.Text + "&fromTime=" + fromTime.Text + "&toDate=" + toDate.Text + "&toTime=" + toTime.Text + "");
}
protected void BtnSearchAll_Click(object sender, EventArgs e)
{
Response.Redirect("Pending.aspx");
}
}
}