Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hai all

I want to create a website for automate my office.

for that what i should use,
Project----->ASP.NET Web Application or ASP.NET Web service Application or ASP.NET AJAX Server Control or ASP.NET AJAX Server Control Extender or ASP.NET Server Control or
Website...

in visual studio 2008

and what is the difference Between all these?
thanks in advance
plz help me
Posted

use "ASP.NET Website" for your solution
Go to
File - > Create New Website
 
Share this answer
 
You definitely should use ASP.net Web Application or Website. They are the project types that give you static and dynamic web pages, master pages, theming and so on.

ASP.net Web Services are for transporting data (SOAP, Xml)

ASP.net Server Controls are usually smaller pieces of UI functionality in component form. These can also be AJAX enabled. You can use one or more of these in your Web Application or Website.
 
Share this answer
 
Comments
Pandya Anil 10-Nov-11 4:34am    
m5!
Ragi Gopi 10-Nov-11 4:35am    
whats difference between ASP.net Web Application and Website
jim lahey 10-Nov-11 4:41am    
The differences are quite subtle. Web Applications need to be compiled and output an assembly whereas Websites can compile at runtime and only output assemblies if you publish them. In my opinion, a Web Application is a better bet because they compile to a single assembly which can then be deployed to the GAC for a small performance increase.
looks you, new to ASP.NET. Check following links

ASP.NET web application[^]

ASP.NET web service is programmable logic accessible via web protocol. check here[^].

asp.net ajax[^]

WebApplication and website are same thing. A website is a Web Application.
A application running on web called web application.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900