ASP.NET(vb.net) Application.StaticObjects() - Application Object - Application.StaticObjects() : Gets an StaticObjects in the Application.
ShotDev Focus:
- ASP.NET(vb.net) Application.StaticObjects() - Application Object
Global.asax
AspNetApplicationStaticObjects.aspx
<script language="VBScript" runat="Server"> '*** Code ***' </script> <object runat="Server" scope="Application" id="proUpload" progid="aspSmartUpload.SmartUpload"></object> <object runat="Server" scope="Application" id="proZip" progid="Pnvzip.ZipFunctions"></object> </script>
AspNetApplicationStaticObjects.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) ViewApplication() End Sub Sub ViewApplication() Dim obj1 As Object = Application.StaticObjects("proUpload") Dim obj2 As Object = Application.StaticObjects("proZip") Me.lblText1.Text = obj1.ToString Me.lblText2.Text = obj2.ToString End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label><br /> <asp:Label id="lblText2" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot