Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Strongly Typed View List Sample in MVC: Day 24
WhatsApp
Akshay Patel
10y
66k
0
8
100
Article
In this article we will display a list of employees by creating a strongly typed view.
Create a MVC project from the "Empty" template.
Right-click on "Models", select "Add" >> "Class…".
Name the class "Employee" and click on the "Add" button.
In the employee class create employee properties like EmployeeId, FirstName, LastName and so on.
Now add a controller; right-click on "Controllers", select "Add" >> "Controller…".
Select "MVC 5 Controller - Empty" to add an empty controller.
Click on the "Add" button.
Name the controller as in the following:
In the Index action result method:
Create a list of employees with some dummy employee details
Assign the list to ViewData.Model
Now add a view. Right-click on the "Index" action method and select "Add View…".
Name the view as "Index".
Since we will show a list of employees, select "List" from the template.
From the model class drop down, select "Employee" as model.
Click on the "Add" button.
It will automatically create a view from the model.
Remove the "Create New" link from the top and The "Edit", "Details" and "Delete" links from the bottom of the table since we only want to display a list of employees.
Now run the project and you can have a list of employees in the browser.
<<
Error Handling Method 7: Day 7 of 23
ASP.NET MVC
Strongly Typed View
View List Sample in MVC
Up Next
Ebook Download
View all
Hands on ASP.NET GridView
Read by 17k people
Download Now!
Learn
View all
Membership not found