Introduction
This articles basically describes the file Types in ASP.NET and their functionality
.aspx The files having this extensionare basically ASP.NET web pages. These basically contains the User Interface
.ascx
This file is called the ASP.NET User Control. A user control file is a simply text file which is saved with the extension "ascx". It does not contain html, body, and frame tag.
.asmx
The files having extension .asmx are called ASP.NETWeb Services
web.config
this file is basically XML-based configuration file for ASP.NET application. this file basically handles security, state management, and memory management issues
global.asa
This file is basically used to define the global variables and to response to global events
.disco or .vsdisco
These are special discovery files used to find web services
.vb or .cs
These files are basically code-behind files and are used to sperate the code from user interface(.aspx)
.sln, .suo
These are files which are basically used by Visual Studio .NET to group togther projects. These files are only used during development
|
| Author: Hema Kumar 08 Jul 2004 | Member Level: Silver Points : 0 |
PDB(project database File) Resx files(resource Files)
|
| Author: Sajjad Haider 08 Jul 2004 | Member Level: Bronze Points : 0 |
But it depends upon the operations that what type of operations you are going to do like there two more files i.e .vbproj and csproj anyway thanks
|
| Author: Bhasker Das 13 Jul 2004 | Member Level: Bronze Points : 0 |
Can anybody please tell me that what are these .pdb and .resx files?
|
| Author: Sajjad Haider 13 Jul 2004 | Member Level: Bronze Points : 0 |
inVC++ the PDB file is that in which the linker puts the debugging information.Actually the linker puts it in into a program database (PDB). It updates the PDB during subsequent builds of the program. The debugger reads the embedded name and uses the PDB when you debug the program. The linker uses the base name of the program and the extension .pdb to name the program database, and embeds the path where it was created. and 2nd one is .resx which specifies the extension for an XML-based resource file to convert to a .resources or a .txt file.
|
| Author: sanjeev puri 26 Apr 2005 | Member Level: Silver Points : 0 |
How many web.config files can u have in an asp.net application? Also, where these files will be stored?
|