Defines application-specific attributes used by the ASP+ application compiler.
<%@ Application attribute=value [attribute=value … ]%>
The following attribute pairs are supported:
Attribute | Supported Values | Description |
---|---|---|
INHERITS | HTTPPipeline-derived class | Superclass for class to extend. |
DESCRIPTION | Any string description | Provides a text description of the application (ignored by the parser and compiler). |
<%@ Application Inherits=”My401kApp.Object” Description=”A sample app” %>
The preceding code instructs the ASP+ application compiler to dynamically compile a new application class that extends the My401kApp.Object base class.
ASP+ Application File Syntax | Application Directives