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
547 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web.AccountSetting.CreateLedger
  4. {
  5. public partial class List : System.Web.UI.Page
  6. {
  7. private const string ViewFunctionId = "20150300";
  8. private SwiftLibrary _sl = new SwiftLibrary();
  9. protected void Page_Load(object sender, EventArgs e)
  10. {
  11. Authenticate();
  12. if (!IsPostBack)
  13. {
  14. }
  15. }
  16. private void Authenticate()
  17. {
  18. _sl.CheckAuthentication(ViewFunctionId);
  19. }
  20. }
  21. }