/BaliEnterpriseSystems/BaliEnterpriseSystems/BestWelcome.aspx.cs

https://github.com/sirivedula/BEST · C# · 28 lines · 25 code · 3 blank · 0 comment · 2 complexity · 69d8a826c29854f874142979050ad96f MD5 · raw file

  1. using System;
  2. using System.Collections;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Web.Security;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. using System.Web.UI.HtmlControls;
  12. using System.Xml.Linq;
  13. namespace BaliEnterpriseSystems
  14. {
  15. public partial class BestWelcome : System.Web.UI.Page
  16. {
  17. protected void Page_Load(object sender, EventArgs e)
  18. {
  19. if (HttpContext.Current.Session["CurrentUser"] == null)
  20. {
  21. Response.Redirect("Logout.aspx");
  22. }
  23. }
  24. }
  25. }