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

  • Home
  • SEARCH
  • 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 779229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:53:44+00:00 2026-05-14T19:53:44+00:00

How should one deal with an MVC controller returning a null ViewResult? As an

  • 0

How should one deal with an MVC controller returning a null ViewResult?

As an example I am creating a simple edit view:

    public ActionResult Edit(int id)
    {
        var person = (from p in context.SWLiftShare_Persons
                      where p.id == id
                      select p).SingleOrDefault();

        if (person != null)
        {
            return View(person);
        }
        else return View();
    }

I guess in reality there’s no point in checking for a null result in the controller because the view picks out properties from the model:

<h2>Edit - <%= Html.Encode(Model.Name) %></h2>

<%= Html.ValidationSummary("Edit was unsuccessful. Please correct the errors and try again.") %>

<% using (Html.BeginForm()) {%>

    <fieldset>
        <legend>Fields</legend>
        <p>
            <label for="id">id:
            <%= Html.Encode(Model.id) %></label>
        </p>
        <p>
            <label for="CollarNumber">CollarNumber:</label>
            <%= Html.TextBox("CollarNumber", Model.CollarNumber)%>
            <%= Html.ValidationMessage("CollarNumber", "*") %>
        </p>
        <p>
            <label for="Name">Name:</label>
            <%= Html.TextBox("Name", Model.Name)%>
            <%= Html.ValidationMessage("Name", "*") %>
        </p>
        <p>
            <label for="EmailAddress">EmailAddress:</label>
            <%= Html.TextBox("EmailAddress", Model.EmailAddress, new { style = "width:300px" })%>
            <%= Html.ValidationMessage("EmailAddress", "*") %>
        </p>
        <p>
            <input type="submit" value="Save" />
        </p>
    </fieldset>
<% } %>

I could just wrap everything in a <% if(Model != null) { //render edit markup... etc. but that seems rather unelegant. Is there a better way to deal with 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-05-14T19:53:45+00:00Added an answer on May 14, 2026 at 7:53 pm

    In this case it seems to be an error if person becomes null. You could render a different (error) view if this is the case. For example:

    if (person == null) 
    {
      return View("ErrorView");
    }
    
    return View(person);
    

    ErrorView.aspx:

    <div>Person was not found. Try again.</div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How much should one DataSet represent? Using the example of an ordering system: While
Query parameters : http://example.com/apples?order=random&color=blue Matrix parameters : http://example.com/apples;order=random;color=blue When should one use query parameters
Where should one go to be kept updated on all of the security flaws/problems
When should one use a scripting language over a more verbose, compiled language like
In what situations should one catch java.lang.Error on an application?
When developing an app that will listen on a TCP/IP port, how should one
Which one should I use? catch (_com_error e) or catch (_com_error& e)
I read somewhere that one should never use error conditions as normal program flow.
Based on all my reading there should be one GC thread to invoke all
It is to my understanding that one should use a forward-class declaration in the

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.