<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.NET_Tutorial%2FASP.Net_Instroduction%2FDirectory_Structure</id>
		<title>ASP.NET Tutorial/ASP.Net Instroduction/Directory Structure - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.NET_Tutorial%2FASP.Net_Instroduction%2FDirectory_Structure"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/ASP.Net_Instroduction/Directory_Structure&amp;action=history"/>
		<updated>2026-04-29T19:32:24Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.NET_Tutorial/ASP.Net_Instroduction/Directory_Structure&amp;diff=3091&amp;oldid=prev</id>
		<title> в 15:30, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/ASP.Net_Instroduction/Directory_Structure&amp;diff=3091&amp;oldid=prev"/>
				<updated>2010-05-26T15:30:57Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:30, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.NET_Tutorial/ASP.Net_Instroduction/Directory_Structure&amp;diff=3092&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/ASP.Net_Instroduction/Directory_Structure&amp;diff=3092&amp;oldid=prev"/>
				<updated>2010-05-26T11:58:00Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Application Directory Structure==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
ASP.NET defines a few directories with special meanings.&lt;br /&gt;
&lt;br /&gt;
Directory           Description &lt;br /&gt;
Bin                 Contains all the precompiled .NET assemblies usually DLLs&lt;br /&gt;
                    &lt;br /&gt;
App_Code            Contains source code files that are dynamically compiled for use&lt;br /&gt;
                    &lt;br /&gt;
App_GlobalResources stores global resources &lt;br /&gt;
App_LocalResources  resources are accessible for their dedicated page only&lt;br /&gt;
App_WebReferences  Stores references to web services that the web application uses. &lt;br /&gt;
                    This includes WSDL files and discovery documents. &lt;br /&gt;
                    &lt;br /&gt;
App_Data            reserved for data storage&lt;br /&gt;
                   &lt;br /&gt;
App_Browsers        browser definitions stored in XML files&lt;br /&gt;
                    &lt;br /&gt;
App_Themes          themes used by the web application&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== ASP.NET Application Folders==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
\App_Code Folder stores your classes, .wsdl files, and typed datasets. &lt;br /&gt;
Items in this folder are automatically available to all the pages within your solution. &lt;br /&gt;
Because all the classes contained in this folder are built into a single assembly, &lt;br /&gt;
you cannot have classes of different languages sitting in the root \App_Code folder &lt;br /&gt;
\App_Code&lt;br /&gt;
    Calculator.cs&lt;br /&gt;
    AdvancedMath.vb&lt;br /&gt;
In order to work with multiple languages in your \App_Code folder, &lt;br /&gt;
you must make some changes to the folder structure and to the web.config file.&lt;br /&gt;
The first step is to add two new subfolders to the \App_Code folder - a \VB folder and a \CS folder. &lt;br /&gt;
\App_Code&lt;br /&gt;
    \VB&lt;br /&gt;
        Add.vb&lt;br /&gt;
    \CS&lt;br /&gt;
        Subtract.cs&lt;br /&gt;
Structuring the web.config file&lt;br /&gt;
&amp;lt;compilation&amp;gt;&lt;br /&gt;
   &amp;lt;codeSubDirectories&amp;gt;&lt;br /&gt;
      &amp;lt;add directoryName=&amp;quot;VB&amp;quot;&amp;gt;&amp;lt;/add&amp;gt;&lt;br /&gt;
      &amp;lt;add directoryName=&amp;quot;CS&amp;quot;&amp;gt;&amp;lt;/add&amp;gt;&lt;br /&gt;
   &amp;lt;/codeSubDirectories&amp;gt;&lt;br /&gt;
&amp;lt;/compilation&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== ASP.NET Page Directives==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
You can control the behavior of your ASP.NET pages by using these directives. &lt;br /&gt;
Here&amp;quot;s an example of the Page directive: &lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;VB&amp;quot; AutoEventWireup=&amp;quot;false&amp;quot; CodeFile=&amp;quot;Default.aspx.vb&amp;quot;&lt;br /&gt;
    Inherits=&amp;quot;_Default&amp;quot; %&amp;gt;&lt;br /&gt;
Directives are commands that the compiler uses when the page is compiled. &lt;br /&gt;
Directives are simple to incorporate into your pages. &lt;br /&gt;
A directive is written in the following format:&lt;br /&gt;
&amp;lt;%@ [Directive] [Attribute=Value] %&amp;gt;&lt;br /&gt;
You can add more than a single attribute to your directive statements: &lt;br /&gt;
&amp;lt;%@ [Directive] [Attribute=Value] [Attribute=Value] %&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== directives in ASP.NET==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
Directive           Description&lt;br /&gt;
Assembly            Links an assembly to the Page or user control for which it is associated.&lt;br /&gt;
Control             For using with user controls (.ascx). &lt;br /&gt;
Implements          Implements a specified .NET Framework interface.&lt;br /&gt;
Import              Imports namespaces into the Page or user control.&lt;br /&gt;
Master              Set master page. It be used only with master pages (.master). &lt;br /&gt;
MasterType          Associates a class name to a Page in order to get at strongly typed references.&lt;br /&gt;
OutputCache         Controls the output caching policies of a Page or user control.&lt;br /&gt;
Page                Enables you to specify page specific attributes and values to use when the page parses or compiles. &lt;br /&gt;
PreviousPageType    Enables an ASP.NET page to work with a postback from another page in the application.&lt;br /&gt;
Reference           Links a Page or user control to the current Page or user control.&lt;br /&gt;
Register            Associates aliases with namespaces and class names for notation in custom server control syntax.&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== @Page directive==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
@Page directive sets attributes and values for an ASP.NET page (.aspx).&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;VB&amp;quot; &lt;br /&gt;
         AutoEventWireup=&amp;quot;false&amp;quot; &lt;br /&gt;
         CodeFile=&amp;quot;Default.aspx.vb&amp;quot;&lt;br /&gt;
         Inherits=&amp;quot;_Default&amp;quot; %&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Page Directives, code section and layout==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- Directives --&amp;gt; &lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;!-- Code Section --&amp;gt; &lt;br /&gt;
&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
private void MakeUpper(object sender, EventArgs e)&lt;br /&gt;
{&lt;br /&gt;
    string buf = TheString.Value;&lt;br /&gt;
    TheResult.InnerHtml = buf.ToUpper();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;!-- Layout --&amp;gt; &lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;UpperCase&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Make It Upper&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;form id=&amp;quot;Form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input runat=&amp;quot;server&amp;quot; id=&amp;quot;TheString&amp;quot; type=&amp;quot;text&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;input runat=&amp;quot;server&amp;quot; id=&amp;quot;Button1&amp;quot; type=&amp;quot;submit&amp;quot; value=&amp;quot;Proceed...&amp;quot; &lt;br /&gt;
        OnServerClick=&amp;quot;MakeUpper&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;hr&amp;gt;&lt;br /&gt;
    &amp;lt;h3&amp;gt;Results:&amp;lt;/h3&amp;gt;&lt;br /&gt;
    &amp;lt;span runat=&amp;quot;server&amp;quot; id=&amp;quot;TheResult&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>