Copy session values (VB.net) : Session Variables « Session Cookie « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
ASP.Net » Session Cookie » Session Variables 
Copy session values (VB.net)

<%@ Page Language="vb" %>
<html>
   <head>
      <script runat="server">
         Sub Page_Load()
            If Session.Count > Then
               Dim myArray As Array = Array.CreateInstance(GetType(Object), _
                  Session.Count)
               Session.CopyTo(myArray, 0)
               Message.Text = "The first item in the array is: " & myArray(0)
            End If
         End Sub
      </script>
   </head>
<body>
   <form runat="server">
      <asp:label id="Message" runat="server"/>
   </form>
</body>
</html>

           
       
Related examples in the same category
1. Use session to store action time (VB.net)
2. Get Cookie value and assign to the label in C#
3. Get Cookie value (C#)
4. Session Set message (C#)
5. Session get Message (C#)
6. Store your Object in Session (C#)
7. Use Session item (VB.net)
8. Get all session keys (VB.net)
9. Remove value from session value (VB.net)
10. Remove all session values (VB.net)
11. Remove session value by index (VB.net)
12. Write value to session (VB.net)
13. Add and get value from session (VB.net)
14. Clear session values (VB.net)
15. Remove all session content (VB.net)
16. Get session code page in VB (VB.net)
17. Session item count (VB.net)
18. Simple session data: set and retrieve
19. Pass variables with & sign (VB.net)
20. Pass variables between pages (VB.net)
21. Use session variables (VB.net)
ww_w___._ja__va_2s_._c_o_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.