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.

28 lines
841 B

  1. using Swift.web.Library;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. namespace Swift.web.Remit.Compliance.ComplianceOfacRejectReport
  9. {
  10. public partial class Manage : System.Web.UI.Page
  11. {
  12. private readonly RemittanceLibrary sl = new RemittanceLibrary();
  13. private const string ViewFunctionId = "20570000";
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. Authenticate();
  17. if (!IsPostBack)
  18. {
  19. fromDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
  20. toDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
  21. }
  22. }
  23. private void Authenticate()
  24. {
  25. sl.CheckAuthentication(ViewFunctionId);
  26. }
  27. }
  28. }