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

The Archive Base Latest Questions

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

public ActionResult SomeAction(int Id){ //Id is set to 2 var model = //get some

  • 0
public ActionResult SomeAction(int Id){
    //Id is set to 2

    var model = //get some thing from db using Id(2);
    //Now model.Id is set to 9;

    return View(model);
}

----------View----------
@Html.HiddenFor(x => x.Id)

When I view source this hidden field is set to 2 not 9. How do I get it to map to the model instead of mapping to the URL routing info?

P.S. I’d prefer not to rename parameters because then I lose my nice looking url’s unless i change the routing info. I have done that and it does work, but not what I want.

  • 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-28T00:09:18+00:00Added an answer on May 28, 2026 at 12:09 am

    When an Action gets called the framework builds a ModelStateCollection based on the query-string values, post-data, routing values etc. And this ModelStateCollection will be passed to the View. All the HTML input helpers try to the get the values from the ModelStateCollection first, before trying to get the values from the actual model.

    Because your input model is the int id but the output model is some new model the helpers will use the values from the ModelStateCollection (from the query string) because the propery names Id are match.

    To make it work you have to manually clear the ModelStateCollection before returning the new model to the view:

    public ActionResult SomeAction(int Id){
        //Id is set to 2
    
        ModelState.Clear();
    
        var model = //get some thing from db using Id(2);
        //Now model.Id is set to 9;
    
        return View(model);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have 2 actions public ActionResult FilesAdd(int id) { FillParentMenuDDL(id); return View(); } [HttpPost]
public ActionResult ReadXMLDevices(int groupID) { var query = from k in XMLEntities.unassigneditems where k.DevOrAcc
I have public ActionResult Index() { ViewBag.TotalRecords = _tabmasterService.Count(); return View(_tabmasterService.GetTabMasterList(10, 1)); } now
My controller actions: [AcceptVerbs(HttpVerbs.Get)] public ActionResult Login() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult
Here is my code: public ActionResult DeleteItem(int id) { using (var cont = new
I have some action for example public ActionResult SomeAction(Model login) { ..... //Login fail
public ActionResult Edit(int id) { var productBrand = brandRepo.FindProductBrand(id); ProductBrandModel model = Mapper.Map<ProductBrand, ProductBrandModel>(productBrand);
public ActionResult Index() { var pr = db.products; return View(pr); } Firstly - I
Controller: public ActionResult Edit(string temp) { ViewBag.Time = DateTime.Now.ToString(hh:mm:ss); return PartialView(Edit); } Partial View:
I have the following code: public ActionResult SomeAction() { return new JsonpResult { Data

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.