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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:20:57+00:00 2026-06-01T13:20:57+00:00

In my view I have the following code: @using (Html.BeginForm()) { @Html.TextBox(Date2, Model.Date2) <br/>

  • 0

In my view I have the following code:

@using (Html.BeginForm()) {
  @Html.TextBox("Date2", Model.Date2)
  <br/>
  @Model.Date2
  <input type="submit" value="Create" />
}

In my controller I have :

    [HttpPost]
    public ActionResult Index(Home home){
        ViewBag.Message = "Welcome to ASP.NET MVC! (after a submit)";
        home.Date2 = home.Date2.AddDays(1);
        return View("Index", home);
    }

The model is:

public class Home {
    public DateTime Date2 { get; set; }
}

My question is : Why when I hit the submit button than the TextBox display not the date with 1 more day and the html that I output directly the date is?

Edit:

If I step into MVC3 source code I can see that private static MvcHtmlString InputHelper(...) get the value parameter with the good date but later the code get the old value from attemptedValue… You can see the debug here https://i.stack.imgur.com/x2mTI.png

  • 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-01T13:20:58+00:00Added an answer on June 1, 2026 at 1:20 pm

    ModelState saves a copy of the value input into the form field. Usually, if you’re displaying a form in a POST action it’s because validation has failed, so you want to re-display the “attempted” value input rather than a new one (this is what the input HTML helpers do by default).

    To prevent it using the attempted value you could remove it from ModelState, e.g:

        [HttpPost]
        public ActionResult Index(Home home)
        {
            ViewBag.Message = "Welcome to ASP.NET MVC! (after a submit)";
            ModelState.Remove("Date2");
            home.Date2 = home.Date2.AddDays(1);
            return View("Index", home);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code in a view: <div class=wrap_select> @Html.DropDownList(dateRange, new SelectList(Model.DateRange, Value,Text),
I have the following form in a partial view @model PartDetail @using (Ajax.BeginForm(Create, Part,
I have the following View code: @using (Html.BeginForm(Login, Press, FormMethod.Post)) { <fieldset> <legend>User Registration</legend>
I have the following code in a MVC view: <% using (Html.BeginForm()) { %>
I have the following code in a partial view: @model MyOrganization.MyApp.Models.ProductListing @using (Ajax.BeginForm(TagProduct, new
I have the following code in my view: <% using (Ajax.BeginForm(JsonCreate, new AjaxOptions {
In my view I currently have the following code: <%= Html.Hidden(Cart.CartID, Model.Cart.CartID) %> When
I have the following code in a partial view (using Spark): <span id=selectCount>0</span> video(s)
I have created an alert view with two buttons using the following code: UIAlertView
i have the following code in an asp.net mvc view. <% = Html.DropDownList(Filter, new

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.