<Complet de referință Sesiunea Obiect
Colecția StaticObjects conține toate obiectele anexate la cerere / sesiune cu HTML <object> tag - ul.
Sintaxă
Application.StaticObjects(Key)
Session.StaticObjects(Key)
Parametru | Descriere |
---|---|
key | Necesar. Numele elementului pentru a prelua |
Exemple pentru Object Application
Exemplul 1
Pentru a bucla prin colectarea StaticObjects:
<%
for each x in Application.StaticObjects
Response.Write(x & "<br>")
next
%>
Exemplul 2
În Global.asa:
<object runat="server" scope="application"
id="MsgBoard" progid="msgboard.MsgBoard">
</object>
<object runat="server" scope="application"
id="AdRot" progid="MSWC.AdRotator">
</object>
Într-un fișier ASP:
<%
for each x in Application.StaticObjects
Response.Write(x & "<br>")
next
%>
Output:
MsgBoard
AdRot
Exemple pentru obiect Session
Exemplul 1
Pentru a bucla prin colectarea StaticObjects:
<%
for each x in Session.StaticObjects
Response.Write(x & "<br>")
next
%>
Exemplul 2
În Global.asa:
<object runat="server" scope="session"
id="MsgBoard" progid="msgboard.MsgBoard">
</object>
<object runat="server" scope="session"
id="AdRot" progid="MSWC.AdRotator">
</object>
Într-un fișier ASP:
<%
for each x in Session.StaticObjects
Response.Write(x & "<br>")
next
%>
Output:
MsgBoard
AdRot
<Complet de referință Sesiunea Obiect