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.

16 lines
438 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web.AccountReport.TxnReport
  4. {
  5. public partial class ReconcileTxn : System.Web.UI.Page
  6. {
  7. private SwiftLibrary sl = new SwiftLibrary();
  8. protected void Page_Load(object sender, EventArgs e)
  9. {
  10. sl.CheckSession();
  11. fromDate.Text = DateTime.Now.ToString("d");
  12. toDate.Text = DateTime.Now.ToString("d");
  13. }
  14. }
  15. }