Click here to Skip to main content
15,911,035 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every one
I need a help for starting built a web site using visual web developer 2008 and SQL server 2008 for college management software , so please can any one helping me for a good starting , by the way I'm a beginner in asp.net :( so any tips will be helpful .
Posted

My tip: Google is your friend.

If you're a "beginner in asp.net", one really has to question the logic of assigning you the task of developing an enterprise-level web application. If I was in charge, I certainly wouldn't want a "beginner" to be involved at the level you're involved.
 
Share this answer
 
v2
Comments
MCY 12-Dec-10 14:06pm    
solid point
In the new version of ASP.NET you can use something called ASP.NET Web API. This allows you to expose your data in many different formats, such as XML or JSON. The idea is to provide a REST API where you use HTTP for real. Meaning that you use GET/POST/PUT/DELETE. These work pretty straight forward:

GET – Retrieve all or one item
POST – Add an item
PUT – Update an item
DELETE – Remove an item

As mentioned above, you can retrieve data in different formats such as XML or JSON. The type of data that will be in the response is determened by the HTTP header Accept. By default(built-in) you can use the two following accept headers:

application/json
applicaiton/xml

In order to try this out, I will be using curl to make the web requests, because this will allow me to specify the headers manually.

Start off by creating a new ASP.NET MVC 4 Web Applicaiton in Visual Studio 11 Bet
 
Share this answer
 
v2
Comments
SoMad 26-Jun-12 3:04am    
There is really no need to wake up this question after it has been dormant for 18 months.

Soren Madsen

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