Partial views are just Views which you can reuse across your ASP.NET MVC application. If you are from ASP.NET Web Forms background, you can think of Partial View as User Control. Partial views can contain anything – HTML elements for displaying the data or getting the input from the users. In this tip, we are going to see the different ways to pass data to partial view for displaying data to the partial view.
In the
1. Pass Data from Enclosing View to Partial View
@{
ViewBag.Title = "Index";
double piValue = 3.14;
}
<h2>Index</h2>
@Html.Partial("_MyPartial", piValue)
In the partial view (_MyPartial.cshtml), I can consume the passed variable value by accessing
@Model
variable.
Data received is:
@Model
2. Pass Data to Partial View using ViewBag/ViewData
in the belowIndex
action method, I am passing the piValue
value from action method to the View.
public ActionResult Index()
{
ViewBag.piValue = 3.14;
return View();
}
In the
View(Index.cshtml)
, I am passing the piValue
to the partial view.
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@Html.Partial("_MyPartial", (double) @ViewBag.piValue)
3. Pass Data to Partial View using Strongly Typed Model
I have created instance of this class and pass it to the View. In the real world, we would be getting the value from database.
public ActionResult Index()
{
//Assume
we are getting below data from the database
var model = new Employee { Name = "John", Location = "New
York" };
return View(model);
}
we can just use
Model
keyword to pass the data to the Partial View.
@model
PassingData.Models.Employee
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@Html.Partial("_MyPartial",Model)