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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:02:17+00:00 2026-06-17T11:02:17+00:00

I have a very simple ASP.NET MVC4 page. It’s rendering an edit form for

  • 0

I have a very simple ASP.NET MVC4 page. It’s rendering an edit form for the CustomerModel. The form displays correctly, but when I hit edit and post back, the model isn’t being bound. Instead, all the properties of the CustomerModel are left at their defaults. Note that the correct controller method is being invoked, so that’s not the issue.

I can see the form values with matching names to the model properties (Id, Name, Description), but the model doesn’t have them set.

Ideas?

Here is the model:

public class CustomerModel
{
    [Required] 
    public Guid Id;

    [Required]
    public string Name;

    [Required]
    public string Description;
}

And here is the relevant controller method:

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Edit(CustomerModel customerModel)
    {
        if (ModelState.IsValid)
        {
            //...Do stuff

            return RedirectToAction("Index");
        }

        return View(customerModel);
    }

Finally, here is a screen shot of the form collection with the populated values:

enter image description here

  • 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-17T11:02:19+00:00Added an answer on June 17, 2026 at 11:02 am

    Your model has public fields but not public properties, these are not the same.

    Change to:

    public class CustomerModel
    {
        [Required] 
        public Guid Id {get; set;}
    
        [Required]
        public string Name {get; set;}
    
        [Required]
        public string Description {get; set;}
    }
    

    The default MVC model binder will work with properties, not fields.

    More about this here – http://rightbrainleft.net/2011/02/default-mvc-model-binder-doesnt-like-fields/

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

Sidebar

Related Questions

I have an ASP.Net MVC Page with a very simple form on it: One
So, I'm making an ASP.NET page in C#. I have a very simple form
We have a very simple ASP.Net page for uploading a file to our webserver.
My asp.net MVC4 web project is running very slowly when serving a simple page
This really should be so very simple... I have an asp.net master page which
I have a very simple ASP.NET MVC site which displays images from the database.
I have a very simple page built in asp.net (.NET Framework 4) which has
I have a very simple ASP.Net page that acts as a front end for
We have a very simple ASP.NET web application comprising mostly static content and a
What I have created a very simple asp.net web service using .NET framework 3.5,

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.