|
The Page scope usually applies to objects used on the page. Since the objects from the other scopes are usually obtained through special objects, like Session, Application, Cache, etc., this attribute might not be essential.
For example, a session variable would be accessed as shown below.
<%# Session("userID") %>
Or else referred to as shown below, when used as a parameter.
<asp:SessionParameter Name="username" SessionField="txtUsername" Type="String" />
|