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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:21:01+00:00 2026-05-13T00:21:01+00:00

I have a website that uses one Action method which passes a pagename to

  • 0

I have a website that uses one Action method which passes a pagename to the get action method. In the action method it finds the model item by the pagename and returns the relevant stuff to the view.

I have now created a POST action method for this because I need it in my contact page. I still need to find the model by page name and return it to the view however when the user submits the contact information I do a TryUpdateModel on my Enquiry model item and if not valid it returns the errors into the modelstate and the validation summary shows the errors but none of the information they submitted is re-rendered.

Is there anyway I can return the page model and get the textboxes to re-render what they had previously typed when the model fails?

  • 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-13T00:21:01+00:00Added an answer on May 13, 2026 at 12:21 am

    Here’s what we do (with stuff not essential to this question removed):

    private ModelType UpdateModel(Guid id)
    {
        var dbData = (from m in Repository.SelectAll()
                      where m.Id == id
                      select new ModelType
                      {
                          Id = m.Id,
                          Data = m.Data
                      }).First();
        return UpdateModel(dbData);
    }
    
    private ModelType UpdateModel(ModelType model)
    {
        //add other data for view:
        model.SelectStuff = new SelectList( //...
        // etc.
        return model;
    }
    
    [HttpGet]
    public ActionResult Update(Guid id)
    {
        return View(UpdateModel(id));
    }
    
    [HttpPost]
    public ActionResult Update(ModelType model)
    {
        if (!ModelState.IsValid)
        {
            return View(UpdateModel(model));
        }
        // else post to repository
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have developed a website that uses MVC, C#, and jQuery. In one of
We have a website that uses #include file command to roll info into some
I have a website that uses JSP as its view technology (and Spring MVC
I have a website that uses basic ASP.Net forms authentication. In the web.config file
I have a website that uses the facebook, twitter, delicious share links. They contain
I have a website that uses flash. I would like to convert the website
I have an existing website that uses the same code base, but is deployed
I have an asp.net website that uses forms authentication. There are a few things
So I have this ASP.Net 2.0 website that uses functions contained within a JS
So I have been asked to help maintain a website that uses Ruby on

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.