Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4341004
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T11:25:33+00:00 2026-05-21T11:25:33+00:00

Attempting to render a model object into a JSON structure via a partial, like

  • 0

Attempting to render a model object into a JSON structure via a partial, like this:

@if( Model.IsEmpty ) {
    @( Model.UseNull ? "null" : "" )
} else {
    @{ int i = 0; }
    @foreach( var program in Model.Programs ) {
    <text>      
    @(++i > 1 ? "," : "" )
    {
        "Id": "@program.ProgramId",
        "Title": "@Html.Js( program.Title )",
        "Url": "@Html.Js( program.Url )",
    }
    </text>
    }
}

The page compiler complains on the foreach line, thinking the @ symbol is redundant. Removing it results in a compilation error on the line before. If I enclose the entire sections of the if/else in <text> blocks, it works.

Aside from using explicit text sections, is there a way to hint the compiler or escape the braces to avoid these errors?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T11:25:33+00:00Added an answer on May 21, 2026 at 11:25 am

    Inside a code block, you cannot use @ characters to create more code blocks.

    Change your code to

    @if( Model.IsEmpty ) {
        if (Model.UseNull) {
            @:null
        }
    } else {
        int i = 0;
        foreach( var program in Model.Programs ) {
            if (++i > 1) {
                @:,
            }
            <text>      
                {
                    "Id": "@program.ProgramId",
                    "Title": "@Html.Js( program.Title )",
                    "Url": "@Html.Js( program.Url )",
                }
            </text>
        }
    }
    

    However, you should use a JSON serializer instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm attempting to render xml from a service application. In the model, the relationship
Attempting to insert an escape character into a table results in a warning. For
When attempting to call functions in math.h , I'm getting link errors like the
I'm attempting to create a hierarchal menu system in rails. My menu model is
I have been attempting to dive into RSpec 2 but its auto generated controller
I have a base LoggedEvent model and a number of subclass models like follows:
Attempting to follow this Java tutorial . About 63 pages in, you are instructed
I'm trying the render an HTML list that looks like the following, using the
I'm attempting to render RTF documents using the WPF RichTextBox control. So far, the
I'm attempting to render the following text using the ExtTextOut function with the Courier

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.