hi I want to do mvc project ,please give me steps for that .
first i have to design database or front end
and also how to use jQuery code in views
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gaurav Kumar AroraPosted Mar 21, 2015, 5:27 AM
It looks like you're beginners to MVC. So, I suggest you to please go with the available in-built templates. First, understand the work-flow/functionality of MVC and then start reading of some MVC tutorials.
Related to your query, steps would be changed as per the requirements. Here are the general step(s):
1. Create MVC application using Visual Studio
2. Go with ORM (inbuilt support is available with Entity Framework) - initially go with DB First approach. Means, create your database first and then create edmx from within your MVC project.
3. Wire-up all the models with your business flow
4. Create controller with Action methods
5. Write-up Views for specific actions (being called from controller)
6. Test your first MVC app
Please note that: Url will be in the form of controller-name/action-method/{optional parameter}
Come back if you need more info.