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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:09:26+00:00 2026-05-28T16:09:26+00:00

I need some help with this one…. I have this simple model: public class

  • 0

I need some help with this one….

I have this simple model:

public class Candidat 
{

    public string LoginEmail { get; set; }

    [Required]
    [DataType(DataType.Text)]
    [Display(Name = "Prénom")]
    public string FirstName { get; set; }

    [Required]
    [DataType(DataType.Text)]
    [Display(Name = "Nom")]
    public string LastName { get; set; }
}

I also have a controller like this:

        [Authorize]
    public ActionResult Index(Candidat model)
    {
        if (model.LoginEmail == null)
        {
            model = null;
            using (var db = new rhDB())
            {
                MembershipUser user = Membership.GetUser();
                if (user != null)
                {
                    model = (from m in db.Candidates where m.LoginEmail == user.Email select m).SingleOrDefault();
                }

                if (model == null)
                {
                    model = new Candidat();
                    model.LoginEmail = user.Email;
                    model.Email = user.Email;
                }

            }
        }

        return View("MyProfileCandidate", model);
    }

As you can see, I check if the user as an existing record in the database. If not, I create a new instance of the model and set some default values… Then, I pass it to an EditView.

The problem is that my view show with the error validation messages… For all required fields…

Of course, this is because those fields are empty and required… It seems like the view think I am posting back an invalid model… Is there a way to hide those validation message ?

  • 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-28T16:09:27+00:00Added an answer on May 28, 2026 at 4:09 pm

    Try clearing the model state if you intend to modify some of the values on your model in the POST action:

    [Authorize]
    public ActionResult Index(Candidat model)
    {
        if (model.LoginEmail == null)
        {
            model = null;
            using (var db = new rhDB())
            {
                MembershipUser user = Membership.GetUser();
                if (user != null)
                {
                    ModelState.Clear();
                    model = (from m in db.Candidates where m.LoginEmail == user.Email select m).SingleOrDefault();
                }
    
                if (model == null)
                {
                    ModelState.Clear();
                    model = new Candidat();
                    model.LoginEmail = user.Email;
                    model.Email = user.Email;
                }
    
            }
        }
    
        return View("MyProfileCandidate", model);
    }
    

    The reason for this is that HTML helpers will use model state values that were initially posted instead of those in the model. You could also clear individual fields in the model state: ModelState.Remove("FirstName");.

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

Sidebar

Related Questions

I think i need some help for the string replace function. This one do
Okay, I am stumped on this one and need some quick help. I have
need some help with this one. I have some reflectance values for a colour
I need some help on this one please, i basically have menuVIP.java, and vipKeyword.java.
Hi i need some help on this. I have one web server and i
I really need some help with this as I have been trying to fix
Need some help to solve this. I have a gridview and inside the gridview
I need some help in solving this problem. We have a large amount of
I need some help to model this regular expression. I think it'll be easier
I desperately need some help on this one. I've created a <script> that closely

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.