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.

15 lines
367 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web.Agent
  4. {
  5. public partial class Dashboard : System.Web.UI.Page
  6. {
  7. private RemittanceLibrary rl = new RemittanceLibrary();
  8. protected void Page_Load(object sender, EventArgs e)
  9. {
  10. rl.CheckSession();
  11. Response.Redirect("Dashboard2.aspx");
  12. }
  13. }
  14. }