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.
 
 
 
 
 

27 lines
748 B

using Swift.web.Library;
using System;
namespace Swift.web.KJBank.CustomerSetup
{
public partial class DepositReport : System.Web.UI.Page
{
private const string ViewFunctionId = "20134100";
private RemittanceLibrary _sl = new RemittanceLibrary();
protected void Page_Load(object sender, EventArgs e)
{
_sl.CheckSession();
if (!IsPostBack)
{
Authenticate();
startDate.Text = DateTime.Today.AddDays(-1).ToString("yyyy-MM-dd");
toDate.Text = DateTime.Today.ToString("yyyy-MM-dd");
}
}
private void Authenticate()
{
_sl.CheckAuthentication(ViewFunctionId);
}
}
}