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






<%@ Page EnableSessionState = "ReadOnly" %>

<script runat="server" >

  Public Sub Page_Load
     Response.Write( Session("MySession") )

     Session("MySession") = "My Session Value"

  End Sub

</script>
<HTML>

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

       A session state value is set, but is not persisted when EnableSessionState = "ReadOnly".

    </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