Hands on Training on “ASP.NET MVC with Entity Framework” . Topic: Develop a POS system from scratch by ASP.NET MVC with Entity Framework Technical Speaker: Md. Mahedee Hasan Venue: Microsoft Bangladesh Organized by: Microsoft Bangladesh & Tech Forum Date: 23 August, 2014
Month: August 2014
A simple application with ASP.NET MVC 4 with EF 6 Code first and Scaffolding
Introduction Before going to the details of article, I think you already know what MVC is and how ASP.NET MVC Works. If you don’t have any idea, you are requested to read the following article. Introduction to ASP.NET MVC How to create first Application by ASP.NET MVC Uses of ViewBag and Model in ASP.NET MVC
Routes and Controllers in ASP.NET MVC
Let’s consider a url http://localhost/home/about . How does it work in an MVC application? How does it deliver a request? Yes, routing engine is responsible for this task. So, what is routing engine? The routing engine is a core part of asp.net. It’s not tied to the MVC framework. You can use the routing engine
Uses of ViewBag and Model in ASP.NET MVC
In my series tutorial on ASP.NET MVC, I will try to develop an application which is called Training Management System (TMS). In this project, I will keep an employee’s skill matrix on the basis of training. Rather than this, I will keep employee information, training information and many more. I will continuously modify the project
How to create first Application by ASP.NET MVC
Prerequisite : Introduction to ASP.NET MVC
Introduction to ASP.NET MVC
What is MVC? MVC is a framework methodology. It divides an application’s implementation into three component roles: models, views, and controllers. The Model represents the application core (for instance a list of database records). The View displays the data (the database records). The Controller handles the input. For example: If you request a page, first controller