web 2.0

ASP.NET(vb.net) Session_Start() - Global.asax

ASP.NET(vb.net) Session_Start() - Global.asax - Session_Start() : Starts the session.

ShotDev Focus:
- ASP.NET(vb.net) Session_Start() - Global.asax

Example

Global.asax

  1. <%@ Application Language="VB" %>  
  2.   
  3. <script runat="server">  
  4.   
  5. Sub Application_Start(ByVal sender As ObjectByVal e As EventArgs)  
  6. ' Code that runs on application startup  
  7. Application("OnlineNow") = 0  
  8. End Sub  
  9.   
  10. Sub Application_End(ByVal sender As ObjectByVal e As EventArgs)  
  11. ' Code that runs on application shutdown  
  12. Application("OnlineNow") = Nothing  
  13. End Sub  
  14.   
  15. Sub Application_Error(ByVal sender As ObjectByVal e As EventArgs)  
  16. ' Code that runs when an unhandled error occurs  
  17. End Sub  
  18.   
  19. Sub Session_Start(ByVal sender As ObjectByVal e As EventArgs)  
  20. ' Code that runs when a new session is started  
  21. Application.Lock()  
  22. Application("OnlineNow") = Application("OnlineNow") + 1  
  23. Application.UnLock()  
  24. End Sub  
  25.   
  26. Sub Session_End(ByVal sender As ObjectByVal e As EventArgs)  
  27. Application.Lock()  
  28. Application("OnlineNow") = Application("OnlineNow") - 1  
  29. Application.UnLock()  
  30. End Sub  
  31.   
  32. </script>  

AspNetGlobal.aspx

  1. <%@ Page Language="VB" %>  
  2. <script runat="server">  
  3. Sub Page_Load(sender As Object, e As EventArgs)  
  4. Me.lblText.Text = Application("OnlineNow") & " Online"  
  5. End Sub  
  6. </script>  
  7. <html>  
  8. <head>  
  9. <title>ShotDev.Com Tutorial</title>  
  10. </head>  
  11. <body>  
  12. <form id="form1" runat="server">  
  13. <asp:Label id="lblText" runat="server"></asp:Label><br />  
  14. </form>  
  15. </body>  
  16. </html>  

Screenshot

ASP.NET(vb.net) Session_Start() - Global.asax
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.