ASP.NET Special Folders And Page and Control Directives
Custom Search
Common Page and Control Directives
<%@ Page Language="C#" %>
<%@ Page Language="VB" %>
<%@ Page Language="C#" CodeFile="Page1.ascx.cs" Inherits="Control1" %>
<%@ Page Language="VB" CodeFile="Page1.ascx.vb" Inherits="Control1" %>
<%@ Control Language="C#" %>
<%@ Control Language="VB" %>
<%@ Control Language="C#" CodeFile="Page1.ascx.cs" Inherits="Control1" %>
<%@ Control Language="VB" CodeFile="Page1.ascx.vb" Inherits="Control1" %>
<%@ Register TagPrefi x="uc1" TagName="Control1" Src="Control1.ascx" %>
<%@ Register TagPrefi x="lvs" Namespace="Lvs.Web.UI" Assembly="Lvs.Web" %>
<%@ Import Namespace="System.Data" %>
<%@ OutputCache Duration="60" VaryByParam="none" %>
<%@ OutputCache Location="Server" VaryByParam="param1;param2" Duration="60" %>
<%@ OutputCache Location="None" NoStore="true" %>
ASP.NET Special Folders
Bin :Contains assemblies used by the web application
App_Code :C# or VB source code that is common to the web site & also Utility classes, modules BasePages etc.
App_Data : SQLExpress databases used by the web site.
App_GlobalResources :Resources shared across all pages and controls.
App_LocalResources :Resources specifi c to a page or control
App_WebReferences :References to web services
App_Themes : Contains .skin, .css and image fi les used for the themes of the site.
App_Browsers : Optional .browser capabilities fi les.






Comments