I think the OP is actually addressing the issue of Microsoft creating two different systems for creating essentially the same thing.
If you have a VS2005 installation with SP1, you may well have the choice between creating a New Web Site, or creating a Web Applciation Project. The former doesn't compile the code behind directly into DLLs, all code is encouraged to be in the App_Code directory, and the data in the App_Data directory. The web application keeps the CS/VB files with the ASPX/ASMX files however when the project is built, all the code is compiled into the DLL. This means that you do not need to put your source code on the webserver, whereas with the first you do as IIS will compile these on the fly into instructions. Ankur, I prefer the Web Application Project type, as it is a project and fits better with the other types of projects in VS2005. On 2 Jan, 17:34, ankur <[email protected]> wrote: > It's our first project. > we have to make a application for our college's store room. 10 to 15 > systems need to access that application and lan is also present. > thus we cannot decide that we need to make web application or > websites. > please help us.
