ASP.NET(vb.net) Session.Contents() - Session Object - Session.Contents() : The Session.Contents collection contains all of the items that have been established for a session without using the <OBJECT> tag.The collection can be used to determine the value of a specific session item, or to iterate through the collection and retrieve a list of all items in the session.
ShotDev Focus:
- ASP.NET(vb.net) Session.Contents() - Session Object
Example
AspNetSessionContents.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) '*** Create Session ***' Session.TimeOut = 20 Session("Name") = "Mr.Weerachai Nukitram" Session("NickName") = "Mr.Win" Session.Add("SiteName","www.ShotDev.Com") '*** Read Session ***' Dim items As Object For Each items In Session.Contents Me.lblText1.Text = Me.lblText1.Text & items & " = " & Session(items) & "<br>" Next End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label><br /><br /> </form> </body> </html>
Screenshot