<%@ 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>ThaiCreate.Com ASP.NET - Application Object</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>