ASP Session.StaticObjects Collection Last Updated : 01 Feb, 2021 Comments Improve Suggest changes Like Article Like Report The Session.StaticObjects Collection in ASP is used to store all the objects created by using the <object> tag within the scope of the session object. Syntax: Session.StaticObjects( Key ) Parameter Values Key: It is a required parameter. It specifies the name of the property of an object that would be retrieved. Example: HTML <object runat="server" scope="session" id="MsgBoard" progid="msgboard.MsgBoard"> </object> <object runat="server" scope="session" id="AdRot" progid="MSWC.AdRotator"> </object> ASP code: Below code uses an iterating control structure to loop through the keys of the StaticObjects Collection. ASP <% for each x in Session.StaticObjects Response.Write(x & "<br>") next %> Output: MsgBoard AdRot Comment More infoAdvertise with us Next Article ASP Session.StaticObjects Collection M manaschhabra2 Follow Improve Article Tags : Websites & Apps ASP-Properties Similar Reads ASP Application.StaticObjects Collection The Application.StaticObjects Collection in ASP is used to store all the objects created by using the <object> tag within the scope of the Application object.  Syntax Application.StaticObjects( Key ) Parameter Values  Key: It is a required parameter. It specifies the name of the property of 1 min read ASP Contents Collection The ASP Contents Collection is used for collecting the items which are appended to the Application object by using script command. This Collection can also be used to provide a list of items that have been given application scope, The Contents.Remove and Contents.RemoveAll methods can be used to rem 1 min read ASP Session.Contents Collection The ASP Session.Contents Collection is used for collecting the items which are appended to the Application object by using script command.  This Collection can also be used to provide a list of items that have been given session scope,  We can use the Contents.Remove and Contents.RemoveAll methods 1 min read ASP Application Object What is an Application? An Application is a group of two or more ASP files that use to work together to perform a particular task is called an Application. Similarly, An ASP-based application is defined as the collection of all .asp files in the directory and the sub-directory. The ASP Application O 2 min read ASP Session.SessionID Property ASP Session.SessionID Property: It is a read-only property It means you can not modify this property. It returns a unique ID for each new user session that is generated by the user Every session gave a unique ID that is generated by the server when the session is created. It is stored as a cookie in 1 min read Like