Click here to Skip to main content
15,883,731 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Give me Details and Download any e-book and
How to use MVC cantrol with databinding in asp.net ???
Give me Best Example and Best Link suggestion ???
Posted
Updated 16-Aug-12 23:13pm
v2
Comments
bbirajdar 17-Aug-12 5:18am    
You need to join a training course in asp.net mvc. Note that this is a quick question-answers section and not a free online software training website

Google is your friend. Amazon is your firend. you can't use MVC in ASP.NET. you CAN create an MVC site that also runs asp.net pages. MVC does not have controls, or databindng. ASP.NET does. I think you're very confused and don't know what you're asking.
 
Share this answer
 
Comments
_Amy 19-Aug-12 0:05am    
Nice advice. +5!
ASP.Net and MVC are two different things. It is not an upgrade of ASP.Net as many have mistaken. ASP.Net Webform is still in development.

First get a basic idea by watching the following videos.

Overview[^]

Check the videos on right side from PluralSight.[^]

And once you get basic idea, you can read the following ebook.
http://aspnetmvcbook.s3.amazonaws.com/aspnetmvc-nerdinner_v1.pdf[^]

And all of these you can easily find using simple google search. You should not waste your time by posting such question and then waiting for an answer, instead you can just search it on internet.
 
Share this answer
 
Comments
Abhai Oza 20-Aug-12 2:20am    
Thankx...
But I have install vb2010 service pack1. and i have start new web project create but MVC Web not display..
How to Start MVC Web Application ???
Rutvik Dave 20-Aug-12 9:07am    
MVC uses routes so traditional url will not work, support you have a Controller and an Action, then you have to put http://localhost:port/Controller/Action, but if you just press F5 it will go to http://localhost:port/Views/Controller/ViewName, which is wrong. so once it says page cant be found, correct the url. you can change this in Project Properties also.
Asp.Net Mvc is front controller pattern, where views define templates for data rendering, MOdel defines the data, and controller handshakes the model to View.for any event on the page, listener is controller, it differs in many ways with Asp.Net.

Asp.Net is a Page Controller pattern,


check this link, should be helpful

http://msdn.microsoft.com/en-us/library/dd566232.aspx[^]

you can use most of the asp.net web forms stuff, if you are going with Asp.net MVC web forms engine.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900