Session State - Disabled : Page Directives « Page Lifecycle « ASP.NET Tutorial






<%@ Page EnableSessionState = "false" %>

<script runat="server" >
  Public Sub Page_Load
     Session("MySession") = "My Session Value"
     Response.Write( Session("MySession") )
  End Sub

</script>

<HTML>
    <form id="Form1" runat="server">

       When EnableSessionState = "false" Session State is not accessible - this page generates an exception.

    </form>

    </body>
</html>








5.2.Page Directives
5.2.1.ASP.NET Page Directives
5.2.2.In page derivative, set trace to true
5.2.3.Debugging ASP.NET Pages
5.2.4.Take advantage of page-level tracing
5.2.5.Setting a Culture Manually
5.2.6.Displaying a localized Calendar control.
5.2.7.Master page
5.2.8.EnableViewState='True'
5.2.9.Session State - Disabled
5.2.10.Session State - Readonly