Get current session timeout value (VB.net) : Timeout « Session Cookie « ASP.Net






Get current session timeout value (VB.net)

<%@ Page Language="vb" %>
<html>
   <head>
      <script runat="server">
         Sub Page_Load()
            Message.Text = "Current Session timeout value is " & _
               Session.Timeout & " minutes."
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
</body>
</html>

           
       








Related examples in the same category

1.Session TimeOut (VB.net)