private void Page_Load(object sender, System.EventArgs e)
 {
     sApplicationPath = Request.ApplicationPath;
     if (!sApplicationPath.EndsWith("/"))
     {
         sApplicationPath += "/";
     }
     dtMenu = SplendidCache.MobileMenu();
     // 04/28/2006 Paul.  Hide the tab menu if there is no menu to display.
     // This should only occur during login.
     if (dtMenu.Rows.Count == 0)
     {
         this.Visible = false;
     }
 }