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 8617591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:53:51+00:00 2026-06-12T05:53:51+00:00

Razor 2 (which ships with MVC4) doesn’t seem to be fully backwards compatible with

  • 0

Razor 2 (which ships with MVC4) doesn’t seem to be fully backwards compatible with Razor 1 (from MVC3).

Since upgrading, I found an error:

The “td@Html.Raw(count” element was not closed. All elements must be either self-closing or have a matching end tag.

The code that caused this was:

<td@Html.Raw(count == null ? null : " class='has-item'")>

What is the solution to this?

  • 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-06-12T05:53:52+00:00Added an answer on June 12, 2026 at 5:53 am

    The Razor parser was re-written for MVC 4, presumably because:

    The HTML5-specs clearly states that unclosed HTML-tags are supported, but Razor v1 didn’t have an advanced enough parser to support this. Razor v2 now supports this with the elements listed in W3C’s spec.

    The simplest solution here is to add a single space before the @ symbol:

    <td @Html.Raw(count == null ? null : " class='has-item'")>
    

    However, conditional attributes in Razor with MVC 4 have a more elegant syntax.

    <td class="@(count == null ? null : "has-item")">
    

    When an attribute value resolves to null, the attribute is omitted from the element. So the output of this markup is either:

    <td>
    

    …or…

    <td class="has-item">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on an MVC3 Razor web application which gets it's page decoration from
I'm using mvc3 razor engine from view I call function with Uri.Action which return
I have a action link on my MVC3 razor view. Which have a action
All, I'm in the process of building a web application (C#, MVC3 Razor) which
I have an MVC3 Razor view which has a link that requires user login
Which is best way to upload single file with asp.net mvc3 razor and validate
I am working on a project which adopted ASP.NET MVC3(Razor) tech. Now, I have
Hello all: I'm building an app using C#/MVC3/Razor which has a database configured in
How can I create a MVC3 Razor Label which shows the label text in
I have a Kendo UI Grid on my Razor Layout which fetches data from

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.