Whenever a new technology or product comes onto the developer scene, people want to know how to best leverage their existing skills to work with it, and nobody wants to have to abandon existing knowledge. Making the move from Web Forms to MVC is no different. Despite the fact that Web Forms & MVC are very different ways of creating web applications on the ASP.NET platform, there are many skills and techniques to take with you.
Tuesday, July 31, 2012
Migrate From ASP.NET To MVC 3
Whenever a new technology or product comes onto the developer scene, people want to know how to best leverage their existing skills to work with it, and nobody wants to have to abandon existing knowledge. Making the move from Web Forms to MVC is no different. Despite the fact that Web Forms & MVC are very different ways of creating web applications on the ASP.NET platform, there are many skills and techniques to take with you.
ASP.NET MVC from Basics to Tips and Tricks
First of all MVC stands for Model-View-Controller.
Below some of the basic components are listed.
- Model = Data / State
- View = Responsible only for rendering the HTML output (.aspx page)
- Controller = Presentation Logic (class with action methods)
- HTTP operations are routed here
- Responsible for selecting the appropriate View
- Provides the View with the proper Model
Thursday, July 26, 2012
Scaffolding Concept In ASP.NET
Scaffolding
Scaffolding, is a way to automatically generate Web pages for each table in the database. Scaffolding lets you create a functional Web site for viewing and editing data based on the schema of the data. You can easily customize scaffolding elements or create new ones to override the default behavior.
Wednesday, July 25, 2012
ASP.NET MVC 4.0
MVC Overview:
MVC Architecture has implemented by Trygve Reenskaug at 1979 for the first time. It was implemented on Smalltalk at Xerox labs. Then benefits and advantages of this architecture has been accepted by most of the coders and software engineers.It was an information about MVC’s history above. Now lets talk about what really MVC is. The word M stands for Model, V stands for View and C stands for Controller. I am going to mention about each item.
Tuesday, July 24, 2012
OAuth Overview
OAuth can be defined as follows:
- OAuth is an open protocol that aims to standardize the way desktop and web applications access a user's private data. OAuth provides a mechanism for users to grant access to private data without sharing their private credentials (username/password). Many sites have started enabling APIs to use OAuth because of its security and standard set of libraries.