Mojtaba
Mojtaba

Reputation: 1630

ASP.NET MVC 4 partial view not working

I wrote a partial method like this :

public ActionResult _StatePartial()
        {
            ViewBag.MyData = new string[] { "110", "24500" };
            return View();
        }

And render _StatePartial view in _Layout page:

@Html.Partial("_StatePartial")

This is my partial view code:

@{
    string[] Data = (string[])ViewBag.MyData;
}
<div id="UserState">
        Reputation: @Html.ActionLink(Data[0], "Reputation", "Profile") | 
        Cash: @Html.ActionLink(Data[1], "Index", "FinancialAccount")
</div>

But when I run this project, _StatePartial method does not invoke and ViewBag always null.

Server Error in '/' Application.
Object reference not set to an instance of an object. 

Note that these parameters is not my model field and compute by calling a web service method. but I'm set these value in my question constantly.

What can I do for this? Any idea for passing parameters to partial view? Thanks.

Upvotes: 5

Views: 10865

Answers (2)

webdeveloper
webdeveloper

Reputation: 17288

Also:

return View();

is for returning view with Layout. You need:

return PartialView();

And I would recommend use this:

public ActionResult StatePartial()
{
    ViewBag.MyData = new string[] { "110", "24500" };
    return View("_StatePartial");
}

but better to use strongly typed models, not ViewBag

Upvotes: 1

Justin Harvey
Justin Harvey

Reputation: 14682

Your call:

@Html.Partial("_StatePartial")

will render the view, but it will not call the action. You would only use this if you were seeting up all your view data in your parent page action. In your case you need to use this:

@Html.Action("_StatePartial")

This will call the action first to retrieve and execute the view.

Upvotes: 9

Related Questions