01.
<%@ Page Language=
"C#"
Debug=
"true"
%>
02.
<script runat=
"server"
>
03.
04.
void
Page_Load(Object sender, EventArgs e)
05.
{
06.
Application[
"Database"
] =
"mydatabase.mdb"
;
07.
Application[
"UserID"
] =
"myuser"
;
08.
Application[
"Password"
] =
"mypassword"
;
09.
10.
Application.Contents.RemoveAt(0);
11.
12.
ViewApplication();
13.
}
14.
15.
void
ViewApplication()
16.
{
17.
foreach
(String items
in
Application.Contents)
18.
{
19.
this
.lblText.Text =
this
.lblText.Text + items +
" = "
+ Application[items] +
"<br>"
;
20.
}
21.
}
22.
23.
</script>
24.
<html>
25.
<head>
26.
<title>ThaiCreate.Com ASP.NET - Application Object</title>
27.
</head>
28.
<body>
29.
<form id=
"form1"
runat=
"server"
>
30.
<asp:Label id=
"lblText"
runat=
"server"
></asp:Label>
31.
</form>
32.
</body>
33.
</html>