Can someone tell me why this does not work?

I get the error No overload for method 'Write' takes 0 arguments. This happens right on the first line in the foreach where I set the ViewBag.InvoiceTotal.

@foreach (var invoice in Model.Invoices)
{
    @{ ViewBag.InvoiceTotal = (invoice.Product.Price * invoice.Quantity).ToString("c"); }

    <tr>
        <td>
            @Html.DisplayFor(modelItem => invoice.InvoiceDate)
        </td>
        <td>
            @Html.DisplayFor(modelItem => invoice.Company.Name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => invoice.Product.Name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => invoice.Quantity)
        </td>
        <td>
            @Html.DisplayFor(modelItem => invoice.Product.Price)
        </td>
        <td>
            @ViewBag.InvoiceTotal
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id = invoice.InvoiceId }) |
            @Html.ActionLink("Details", "Details", new { id = invoice.InvoiceId }) |
            @Html.ActionLink("Delete", "Delete", new { id = invoice.InvoiceId })
        </td>
    </tr>
}
link|improve this question

68% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You have one extra @

@foreach (var invoice in Model.Invoices)
 { 
  { 
  ViewBag.InvoiceTotal = (invoice.Product.Price * invoice.Quantity).ToString("c"); 
  } 
}

This works.

link|improve this answer
Awesome. Thanks! – user1066133 Dec 15 '11 at 13:25
feedback
       @foreach (var invoice in Model.Invoices)
            {
                 ViewBag.InvoiceTotal = (invoice.Product.Price * invoice.Quantity).ToString("c"); 

                <tr>
                    <td>
                        @Html.DisplayFor(modelItem => invoice.InvoiceDate)
                    </td>
                    <td>
                        @Html.DisplayFor(modelItem => invoice.Company.Name)
                    </td>
                    <td>
                        @Html.DisplayFor(modelItem => invoice.Product.Name)
                    </td>
                    <td>
                        @Html.DisplayFor(modelItem => invoice.Quantity)
                    </td>
                    <td>
                        @Html.DisplayFor(modelItem => invoice.Product.Price)
                    </td>
                    <td>
                        @ViewBag.InvoiceTotal
                    </td>
                    <td>
                        @Html.ActionLink("Edit", "Edit", new { id = invoice.InvoiceId }) |
                        @Html.ActionLink("Details", "Details", new { id = invoice.InvoiceId }) |
                        @Html.ActionLink("Delete", "Delete", new { id = invoice.InvoiceId })
                    </td>
                </tr>
            }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.