so i works in asp.net mvc 4 project and i have a problem in my view, what i want is create a view with 2 differnt type of model,first view (Index) take IEnumerable (Models.m
You just need to create a second view called Details which is strongly typed with SubscribersModel
@model _3SDWebProject.Models.SubscribersModel
Right-click anywhere in the code for your Details() action
Select Add View...
Leave "Details" for View name
Check "Create a strongly-typed view"
Select your SubscribersModel from the Model class dropdown
Scaffold template: Details
Click "Add"