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.
 
 
 
 
 

23 lines
701 B

using Swift.web.Library;
using System;
namespace Swift.web.AccountReport.TxnReport
{
public partial class DomesticTxn : System.Web.UI.Page
{
private SwiftLibrary sl = new SwiftLibrary();
private const string ViewFunctionId = "20140100";
protected void Page_Load(object sender, EventArgs e)
{
sl.CheckAuthentication(ViewFunctionId);
if (!IsPostBack)
{
fromDate.Text = DateTime.Now.ToString("d");
toDate.Text = DateTime.Now.ToString("d");
rFromDate.Text = DateTime.Now.ToString("d");
rToDate.Text = DateTime.Now.ToString("d");
}
}
}
}