Answer Posted / aryan
11 directives are at your disposal in your ASP.NET pages or
User Control.
1)@Page:- The @Page Directive enables you to specify
attributes and values for an ASP.NET page(.aspx) to be used
when the page is parsed or compiled.
2)@Master:- The @Master Directive is quite similar to the
@Page directive except that the @Master directive is meant
for master page(.master). In using the @master directive,
you specify properties of the templated page that you'll be
using in conjunction with any number of content pages on
your site.
3)@Control:- This directive is used when you build an
ASP.NET user control. This control allows you to define the
properties to be inherited by the user control.
4)@Import:- This directive allows you to specify a
namespace to be imported into the ASP.NET page or user
control.This directive supports only a single attribute:
Namespace.
5)@Implements:-This directive gets the ASP.NET page to
implement a specified .NET Framework interface. This
directive supports only single attribute: Interface.
6)@Register:- This directive associates aliases with
namespaces and class names for notation in custom server
control syntax.This directive supports five attributes:
Assembly,Namespace,Src,TagName,TagPrefix.
7)@Assembly:- This directive attaches assemblies, the
building blocks of .NET applications, to an ASP.NET page or
user control as it compiles,thereby making all the
assembly's classes and interfaces available to the page.
This directive supports 2 attributes: Name and Src.
8)@PreviousPageType:- This directive is used to specify the
page from which any cross-page postings originate. This
directive supports two attributes: TypeName,VirtualPath.
9)@MasterType:- This directive associates a class name to
an ASP.NET page in order to get at strongly typed
references or members contained within the specified master
page. This directive supports two attributes:
TypeName,VirtualPath.
10)@OutputCache:- This directive controls the output
caching policies of an ASP.NET page or user control. This
directive supports the ten attributes:
CacheProfile,Duration,Location,NoStore,Shared,SqlDependency,
VaryByControl,VaryByCustom,VaryByHeader and VaryByParam.
11)@Reference:- This directive declares that another
ASP.NET page or user control should be compiled along with
the active page or control. This directive supports just a
single attribute: VirtualPath.
7)@Assembly
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
What are the difference between overriding and overloading?
Difference between Response.redirect vs server.transfer?
Differentiate between file-based dependency and key-based dependency.
How can we make sure that Web API returns JSON data only?
What is a uri query?
Why asp.net is used?
Can you nest updatepanel within each other?
How many types of controls are there in asp.net?
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc
How you will manage the state of ASP.NET controls?
Is asp.net and .net the same?
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
what are the web form events available in asp.net?
Explain the server control events of asp.net ?
Where the viewstate is stored after the page postback?