Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 200
Mojtaba Avatar asked Nov 20 '12 08:11

Mojtaba


1 Answers

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.

like image 51
Justin Harvey Avatar answered Sep 21 '22 05:09

Justin Harvey