Example #1
0
 protected void BasePage_Load(object sender, EventArgs e)
 {
     Authorization objAuthor = new Authorization();
     m_Login = objAuthor.GetLoginSession();
     if (m_Login == null)
     {
         //
         TsOAPage.ReturnNoPessionPage(this);
     }
 }
Example #2
0
 public Authorization()
 {
     m_user = GetLoginSession();
 }