ASP.NET Scaffolding in Visual Studio 2013

Scaffolding is a technique used by many MVC frameworks (like ASP.Net MVC, Ruby on Rails, Cake PHP and Node.JS etc) to generate code for basid CRUD (Create, Read, Update and Delete) operations against your databse effectively. Further you can edit or customize this auto generated code according to your need.
ASP.NET Scaffolding is a code generation framework for ASP.NET Web applications. Visual Studio 2013 includes pre-installed code generators for MVC and Web API projects. You add scaffolding to your project when you want to quickly add code that interacts with data models. Using scaffolding can reduce the amount of time to develop standard data operations in your project.
By default, Visual Studio 2013 does not support generating code for a Web Forms project, but you can use scaffolding with Web Forms by either adding MVC dependencies to the project or installing an extension.
For more detail about ASP.Net Scaffolding, click the below link.

Comments

Popular posts from this blog

Data Bound Controls in ASP.Net - Part 4 (FormView and DetailsView controls)

ASP.net: HttpHandlers

The Clickjacking attack and X-Frame-Options