Go Back   CodingForums.com > :: Server side development > ASP.NET

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-26-2012, 09:23 AM   PM User | #1
flexibleresourc
Banned

 
Join Date: Mar 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
flexibleresourc is an unknown quantity at this point
what is MVC structure in ASP.NET ?

what is MVC structure in ASP.NET ?

Last edited by WA; 04-20-2012 at 06:43 AM..
flexibleresourc is offline   Reply With Quote
Old 04-03-2012, 08:16 AM   PM User | #2
petersampsons
New Coder

 
Join Date: Mar 2012
Location: Los Angeles, CA
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
petersampsons is an unknown quantity at this point
MVC means Model-View-Controller.MVC architectural pattern separates an application into three main components: the model, the view, and the controller.MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating Web applications.
petersampsons is offline   Reply With Quote
Old 04-20-2012, 06:32 AM   PM User | #3
Rommer
New to the CF scene

 
Join Date: Apr 2012
Location: India
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rommer is an unknown quantity at this point
ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and that gives you full control over markup for enjoyable, agile development.

MVC framework maps URLs to server code differently than an ASP.NET Web Forms page. Instead of mapping URLs to ASP.NET pages or handlers, the framework maps URLs to controller classes. Controller classes handle incoming requests, such as user input and interactions, and execute appropriate application and data logic, based on user input.
Rommer is offline   Reply With Quote
Old 05-02-2012, 10:52 AM   PM User | #4
amitets
New to the CF scene

 
Join Date: Apr 2012
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
amitets is an unknown quantity at this point
A model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the application[citation needed]. A controller handles interactions and updates the model to reflect a change in state of the application, and then passes information to the view. A view accepts necessary information from the controller and renders a user interface to display that.
amitets is offline   Reply With Quote
Reply

Bookmarks

Tags
software

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:43 AM.


Advertisement
Log in to turn off these ads.