Quote:
Originally Posted by Swan
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.