ASP.NET Tutorial/ASP.Net Instroduction/File types

Материал из .Net Framework эксперт
Версия от 14:57, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

ASP.NET File Types

   <source lang="csharp">

File Name Description Ends with .aspx ASP.NET web pages.

                     They contain the user interface. 
                     Users request or navigate directly to one of these pages to start your web application.

Ends with .ascx ASP.NET user controls.

                     User controls are similar to web pages, except that the user cannot access these files directly. 
                     

Ends with .asmx ASP.NET web services collections of methods. web.config XML-based configuration file for your ASP.NET application.

                     It includes settings for customizing security, state management, memory management, and much more. 
                     

Global.asax Global application file.

                     To define global variables and react to global events.
                     

Ends with .cs code-behind files that contain C# code. Ends with .vb code-behind files that contain VB code.</source>