View Single Post
Old Jan 16th, 2008, 10:19 PM   #5
Jimbo
Battle Programmer
 
Jimbo's Avatar
 
Join Date: Feb 2006
Location: Bellevue, WA, USA
Posts: 763
Rep Power: 3 Jimbo is on a distinguished road
Re: Vb.net C# Asp.net

Quote:
Originally Posted by Swan View Post
What is the significance of so called ASP.NET framework ??
Any programming language can be used to create a webpage ( at server side). Like C, C++ etc to o can be used. They don't need any framework...?
ASP.NET provides a framework to generate the elements on the page and to interact with them in what we call "code behind", or server side code. The idea is to keep the web site code relatively simple (e.g. HTML-ish) while allowing you to use the .NET framework for your actual work. It also tries to enforce separation between the logic and the presentation.
__________________
<insert disclaimer here>
<insert shameless plug for Visual Studio here>
Jimbo is offline   Reply With Quote