.asax : Global.asax, used for application-level logic .ascx : Web UserControls: custom controls to be placed onto web pages. .ashx : custom HTTP handlers. .asmx : web service pages. From version 2.0 a Code behind page of an asmx file is placed into the app_code folder. .axd : when enabled in web.config requesting trace.axd outputs application-level tracing. Also used for the special webresource.axd handler which allows control/component developers to package a component/control complete with images, script, css etc. for deployment in a single file (an 'assembly') .config : web.config is the only file in a specific Web application to use this extension by default (machine.config similarly affects the entire Web server and all applications on it), however ASP.NET provides facilities to create and consume other config files. These are stored in XML format. .cs/vb : Code files (cs indicates C#, vb indicates Visual Basic). Code behind files (see a...
Comments
Post a Comment