PageRenderTime 75ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/e_desk/signout.aspx.vb

http://github.com/shafiqissani/eDesk-Systems
Visual Basic | 30 lines | 16 code | 10 blank | 4 comment | 0 complexity | 11b02a873608dac578070ae6eaf306ec MD5 | raw file
  1. Namespace e_desk
  2. Partial Class signout
  3. Inherits System.Web.UI.Page
  4. #Region " Web Form Designer Generated Code "
  5. 'This call is required by the Web Form Designer.
  6. <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  7. End Sub
  8. Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  9. 'CODEGEN: This method call is required by the Web Form Designer
  10. 'Do not modify it using the code editor.
  11. InitializeComponent()
  12. End Sub
  13. #End Region
  14. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  15. 'Put user code to initialize the page here
  16. Session.RemoveAll()
  17. Response.Redirect("index.aspx")
  18. End Sub
  19. End Class
  20. End Namespace