Users Pricing

forum

Home Forums Two model type in one View – MindStick

Two model type in one View

Anonymous User 2137 03 Nov 2014

I have a concern. I am populating a list from controller and showing a table. Now upon clicking of a button in table row, i want to populate modal popup for webform, which is a partial view. My problem is, when i am using List Type model, i am not able to convert that model from list to simple as i have to pass simple model to render webform. My code is as below:

Index.cshtml

@model List<MvcApplication3.Models.ModelList>
@foreach (var item in Model)
{
     @Html.Parial("PartialView")
}

ModelList.cs

public class ModelList
{
     public string Name { set; get; }
     public string Product { set; get; }
     public string Status { set; get; }
     public string Password { set; get; }
     public string Email { set; get; }
 }

PartialView.cshtml

@model MvcApplication3.Models.ModelList
@using (Html.BeginForm())
{
   ////
}

Controller

List<ModelList> objList = new List<ModelList>();

return View(objList);

How can i be able to use same model in both ways.


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md