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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:12:21+00:00 2026-06-01T12:12:21+00:00

I need to modify the display of elements in my razor view depending on

  • 0

I need to modify the display of elements in my razor view depending on the value of a variable that’s in my model.

What I have is Model.PartitionKey which is a six character string. I need to code an if statement that will check if the 3rd and 4th characters of this string are “00”.

Here’s what I have so far:

@using (Ajax.BeginForm(
    action,
    "Contents",
    null,
    new AjaxOptions
    {
        UpdateTargetId = "update-message",
        InsertionMode = InsertionMode.Replace,
        HttpMethod = "POST",
        OnSuccess = success,
        OnFailure = "ajaxOnFailure"
    }, new { @id = "dialogForm", @class = "content ui-widget dialog-admin" }))
{

<div class="float-left">
    @Html.LabelFor(model => model.Status)
    @if (action == "Edit" || action == "Create") {
        @Html.DropDownList("Status", null, new { @class="drop-down", id = "dialogStatus", style="width: 120px" })
    }
    else
    {
        @Html.TextBox("Status", (string)ViewBag.Status, new { @readonly = true })      
    }
</div> 

@if ( Model.PartitionKey.Substring(2,2) == "00") {  
<div class="float-left">
    Html.LabelFor(model => model.Link)
    if (action == "Edit" || action == "Create") {
        Html.TextBoxFor(model => model.Link, new { size = 25 })
    } else {
        Html.TextBoxFor(model => model.Link, new { size = 25, @readonly = true })
    }
</div> 
}

The problem is that it there is an error message on line starting with @if on the 3rd character “f” saying “unexepected if keyword after the @ character”.

Note that I have @ characters before the if in the first block of code. However it is just in the second block of code that it complains.

  • 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-01T12:12:23+00:00Added an answer on June 1, 2026 at 12:12 pm

    Try

    @using (Ajax.BeginForm(
        action,
        "Contents",
        null,
        new AjaxOptions
        {
            UpdateTargetId = "update-message",
            InsertionMode = InsertionMode.Replace,
            HttpMethod = "POST",
            OnSuccess = success,
            OnFailure = "ajaxOnFailure"
        }, new { @id = "dialogForm", @class = "content ui-widget dialog-admin" }))
    {
    
    <div class="float-left">
        @Html.LabelFor(model => model.Status)
        @if (action == "Edit" || action == "Create") {
            @Html.DropDownList("Status", null, new { @class="drop-down", id = "dialogStatus", style="width: 120px" })
        }
        else
        {
            @Html.TextBox("Status", (string)ViewBag.Status, new { @readonly = true })      
        }
    </div> 
    
    if ( Model.PartitionKey.Substring(2,2) == "00") {  
    <div class="float-left">
        @Html.LabelFor(model => model.Link)
        @if (action == "Edit" || action == "Create") {
            @Html.TextBoxFor(model => model.Link, new { size = 25 })
        } else {
            @Html.TextBoxFor(model => model.Link, new { size = 25, @readonly = true })
        }
    </div> 
    }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an issue where we need to modify keys for users that are
I have two similar tables which have data I need to display in a
I need to modify a php search script so that it can handle multiple
I need to modify a column in a SQLite database but I have to
I need to modify a regular expression that matches a url for a redirect.
I am looking for an XSLT snippet that can modify the value of a
I have a div that can display 3 images (in the background) each indicating
hi i need to modify my code a little bit. i have a page
I need some conceptual help: I am trying to display a page that contains
I have a number of applications which I cannot modify(no source), they are hard

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.