ApplicationInfo Class
.NET Framework 2.0
Provides information about a running application. This class cannot be inherited.
Namespace: System.Web.Hosting
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The ApplicationInfo object is used by the ApplicationManager class for information about running applications.
The following code example gets an array of ApplicationInfo objects from the ApplicationManager object associated with the current process.
<%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Hosting" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_PreRender(object sender, EventArgs e) { ApplicationManager appManager = ApplicationManager.GetApplicationManager(); ApplicationInfo [] appInfo = appManager.GetRunningApplications(); GridView1.DataSource = appInfo; GridView1.DataBind(); } </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html" /> <title>Application Info sample</title> </head> <body> <form id="form1" runat="server"> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </form> </body> </html>
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand. Permission value: Minimal.
Community Additions
ADD
Show: