InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.Net @ Assembly, @ Control, @ Implement Draft for Information Only
Content
ASP.NET @ Webpage Directives
ASP.NET @ Webpage DirectivesThe webpage directives for web form and user control are @ Assembly:, @ Control, @ Implements, @ Import, @ Master, @ MasterType, @ OutputCache, @ Page, @ PreviousPageType, @ Reference, and @ Register. @ ImportThe @ Import is used to explicitly imports a namespace into an ASP.NET application file (such as a Web page, a user control, a master page, or a Global.asax file), making all classes and interfaces of the imported namespace available to the file. The imported namespace can be part of the .NET Framework class library or a user-defined namespace. Syntax
<%@ Import namespace="value" %>
Attributes@ ImportKeywords of @ Import directive NameAttribute keyword used to specify namespace by name "value"The fully qualified name of the namespace to import. This can include any of the namespaces included in the .NET Framework or a custom namespace.Remarks
@ MasterThe @ Master directive is used to define master page–specific (.master file) attributes that are used by the ASP.NET page parser and compiler. Syntax
<%@ Master attribute="value" [attribute="value"...] %>
Attributes@
Master Keywords of @ Master directive
attributeSpecified keywords from a list of attribute name used to specify attribute of @ Master attribute.
"value"The specified value of the specified attribute of @ Master attribute.
Attribute ValuesAutoEventWireupIndicates whether simple event handlers can be defined for specific life cycle stages using the syntax Page without any explicit hookup or event signature. true if event auto-wiring is enabled; otherwise, false. The default is true. ClassNameSpecifies the class name for the class that is automatically generated from the markup and compiled when the master page is processed. This value can be any valid class name and can include a namespace. CodeFileSpecifies the name of a separate file that contains a partial class with the event handlers and other master page–specific code. CompilationModeSpecifies whether to compile an ASP.NET master page at run time. Options are Always to always compile the page; Auto, if ASP.NET is to avoid compiling the page, if possible; and Never, to never compile the page or control. The default is Always. CompilerOptionsProvides a string containing compiler options to use to compile the page. In C# and Microsoft Visual Basic, this is a sequence of compiler command-line switches. DebugIndicates whether to compile the master page with debug symbols. true, to compile with debug symbols; otherwise, false. DescriptionProvides a text description of the master page. This value is ignored by the ASP.NET parser. EnableThemingIndicates whether the appearance of the master page and of controls on the master page can be modified, if a theme is applied. true if a theme can be applied; otherwise, false. The default is true. Setting the EnableTheming attribute is primarily useful when a page theme is defined in the Web.config file and applies to all pages, by default. EnableViewStateIndicates whether view state is maintained across page requests. true to maintain view state; otherwise, false. The default is true. ExplicitDetermines whether the page is compiled using the Visual Basic Option Explicit mode. true indicates that the Visual Basic explicit compile option is enabled and that all variables must be declared using a Dim, Private, Public, or ReDim statement; otherwise, false. The default is false. Note: The Explicit attribute is ignored by languages other than Visual Basic. The Explicit attribute is set to true in the Machine.config file. InheritsSpecifies a code-behind class for the page to inherit. This can be any class derived from the MasterPage class. LanguageSpecifies the language used when compiling all inline rendering (<% %> and <%= %>) and code declaration blocks within the page. Values can represent any language that is supported by the .NET Framework, including VB (Visual Basic), C#, and JScript. LinePragmasDetermines whether the runtime should generate pragmas in the generated code. MasterPageFileSpecifies the .master file that acts as a master page for a master page. The MasterPageFile attribute is used in a master page when defining a child master page in a nested master-page scenario. SrcSpecifies the source file name of the code-behind class to dynamically compile when the page is requested. You can choose to include programming logic for your page either in a code-behind class or in a Code Declaration Blocks in the .aspx file. StrictSpecifies whether to compile the page using the Visual Basic Option Strict mode. true if Option Strict is enabled; otherwise, false. The default is false. Note: The Strict attribute is ignored by languages other than Visual Basic. WarningLevelSpecifies the compiler warning level at which you want the compiler to abort compilation for the page. Possible values are from 0 through 4.Remarks
@ MasterTypeThe @ MasterType directive is used to provides a way to create a strongly typed reference to the ASP.NET master page when the master page is accessed from the Master property. Syntax
<%@ MasterType attribute="value" [attribute="value"...] %>
Attributes@ MasterTypeKeywords of @ MasterType directive attributeSpecified keywords from a list of attribute name used to specify attribute of @ MasterType attribute. "value"The specified value of the specified attribute of @ MasterType attribute.Attribute ValuesTypeNameSpecifies the type name for the master page. VirtualPathSpecifies the path to the file that generates the strong type.Remarks
@ OutputCacheThe @ OutputCache directive is used to declaratively control the output caching policies of an ASP.NET page or a user control contained in a page. Syntax
Attributes@ OutputCacheKeywords of @ OutputCache directive " ⋯ "Optional values "Duration"The time, in seconds, that the page or user control is cached. Setting this attribute on a page or user control establishes an expiration policy for HTTP responses from the object and will automatically cache the page or user control output. Note: This attribute is required. If you do not include it, a parser error occurs. LocationOne of the OutputCacheLocation enumeration values. The default is Any. Note: This attribute is not supported for @ OutputCache directives included in user controls (.ascx files). CacheProfileThe name of the cache settings to associate with the page. This is an optional attribute and defaults to an empty string (""). Note This attribute is not supported for @ OutputCache directives included in user controls (.ascx files). When specified on a page, the value must match the names of one of the available entries in the outputCacheProfiles element under the outputCacheSettings section. If the name does not match a profile entry, an exception is thrown. NoStoreA Boolean value that determines whether to prevent secondary storage of sensitive information. Note This attribute is not supported for @ OutputCache directives included in user controls (.ascx files). Setting this attribute to true is equivalent to the following code executed during the request: Response.Cache.SetNoStore(); ProviderNameA string value that identifies the custom output-cache provider to used. Note This attribute is supported only in user controls (.ascx files). It not supported for @ OutputCache directives that are included in ASP.NET pages (.aspx files). SharedA Boolean value that determines whether user control output can be shared with multiple pages. The default is false. For more information, see the Remarks section. Note This attribute is not supported for @ OutputCache directives included in ASP.NET pages (.aspx files). SqlDependencyA string value that identifies a set of database and table name pairs that a page or control's output cache depends on. Note that the SqlCacheDependency class monitors the table in a database that the output cache depends on, so that when items in a table are updated, those items are removed from the cache when using table-based polling. When using notifications (in Microsoft SQL Server 2005) with the value CommandNotification, ultimately a SqlDependency class is used to register for query notifications with the SQL Server 2005 server. Note The CommandNotification value for the SqlDependency attribute is valid only on Web (.aspx) pages. User controls can only use table-based polling with the @ OutputCache directive. VaryByCustomAny text that represents custom output caching requirements. If this attribute is given a value of browser, the cache is varied by browser name and major version information. If a custom string is entered, you must override the GetVaryByCustomString method in your application's Global.asax file. VaryByHeaderA semicolon-separated list of HTTP headers used to vary the output cache. When this attribute is set to multiple headers, the output cache contains a different version of the requested document for each combination of specified headers. Note Setting the VaryByHeader attribute enables caching items in all HTTP version 1.1 caches, not just the ASP.NET cache. This attribute is not supported for @ OutputCache directives in user controls. VaryByParamA semicolon-separated list of strings used to vary the output cache. By default, these strings correspond to a query string value sent with GET method attributes, or a parameter sent using the POST method. When this attribute is set to multiple parameters, the output cache contains a different version of the requested document for each combination of specified parameters. Possible values include none, an asterisk (*), and any valid query string or POST parameter name. Caution noteCaution Either this attribute or the VaryByControl attribute is required when you use the @ OutputCache directive on ASP.NET pages and user controls. A parser error occurs if you fail to include it. If you do not want to specify a parameter to vary cached content, set the value to none. If you want to vary the output cache by all parameter values, set the attribute to an asterisk (*). VaryByControlA semicolon-separated list of strings used to vary a user control's output cache. These strings represent the ID property values of ASP.NET server controls declared in the user control. For more information, see Caching Portions of an ASP.NET Page. Note Either this attribute or the VaryByParam attribute is required when you use the @ OutputCache directive on ASP.NET pages and user controls. VaryByContentEncodingsA semicolon-separated list of strings that are used to vary the output cache. The VaryByContentEncodings attribute is used with the Accept-Encoding header to determine how cached responses are served for different content encodings. For more information about how to specify the Accept-Encoding header, see section 14.3 of the Hypertext Transfer Protocol -- HTTP/1.1 specification on the W3C Web site.Remarks
Source/Reference
©sideway ID: 190600029 Last Updated: 6/29/2019 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019