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.

22 lines
701 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web.AccountReport.TxnReport
  4. {
  5. public partial class DomesticTxn : System.Web.UI.Page
  6. {
  7. private SwiftLibrary sl = new SwiftLibrary();
  8. private const string ViewFunctionId = "20140100";
  9. protected void Page_Load(object sender, EventArgs e)
  10. {
  11. sl.CheckAuthentication(ViewFunctionId);
  12. if (!IsPostBack)
  13. {
  14. fromDate.Text = DateTime.Now.ToString("d");
  15. toDate.Text = DateTime.Now.ToString("d");
  16. rFromDate.Text = DateTime.Now.ToString("d");
  17. rToDate.Text = DateTime.Now.ToString("d");
  18. }
  19. }
  20. }
  21. }