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

using Swift.web.Library;
using System;
namespace Swift.web.Agent
{
public partial class Dashboard : System.Web.UI.Page
{
private RemittanceLibrary rl = new RemittanceLibrary();
protected void Page_Load(object sender, EventArgs e)
{
rl.CheckSession();
Response.Redirect("Dashboard2.aspx");
}
}
}