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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:22:02+00:00 2026-06-03T23:22:02+00:00

I have an ASP.NET MVC 3 Controller Action that accepts an object as follows:

  • 0

I have an ASP.NET MVC 3 Controller Action that accepts an object as follows:

    //// model.ReferenceNumber equals "-1"
    public ActionResult EditApplication(EditApplicationViewModel model)
    {
        if (!ModelState.IsValid)
        {
                  ...
        }

        // Existing Applicant
        model.ReferenceNumber = "";
        var msg = this.RenderPartialViewToString("_ExistingApplication", model);
    }

When the request is received, the “model.ReferenceNumber” equals “-1”. Even after setting the property on the model to empty string “”, still the results of “RenderPartialViewToString” shows the value of “-1” in the “Value” property of the “input” HTML field.

Any idea why this is happening?

This is the code used to render the partial view:
http://craftycodeblog.com/2010/05/15/asp-net-mvc-render-partial-view-to-string/

public static string RenderPartialViewToString(this Controller controller, string viewName, object model)
{
    if (string.IsNullOrEmpty(viewName))
        viewName = controller.ControllerContext.RouteData.GetRequiredString("action");

    controller.ViewData.Model = model;

    using (var sw = new StringWriter())
    {
        var viewResult = ViewEngines.Engines.FindPartialView(controller.ControllerContext, viewName);
        var viewContext = new ViewContext(controller.ControllerContext, viewResult.View, controller.ViewData, controller.TempData, sw);
        viewResult.View.Render(viewContext, sw);

        return sw.GetStringBuilder().ToString();
    }
}

Thanks

  • 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-03T23:22:05+00:00Added an answer on June 3, 2026 at 11:22 pm

    When you modify the value of some model property in your controller qction make sure you remove it from the modelstate as well:

    ModelState.Remove("ReferenceNumber");
    model.ReferenceNumber = "new value";
    var msg = this.RenderPartialViewToString("_ExistingApplication", model);
    
    • 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 site and i have a controller action that emails
I have an ASP.net MVC controller called Designs that has an action with the
I have an ASP.NET MVC project and I have a single action that accepts
In ASP.NET MVC I have a controller that looks somehow like this: public class
If I have an ASP.NET MVC controller action that is called from a jQuery
I have an ASP.Net MVC Controller with a 'MapColumns' action along with a corresponding
ASP.Net MVC Controllers have several methods of forwarding control to another controller or action.
I have Outputcache attribute above one of my controller action in an ASP.NET MVC
I have an Asp.Net MVC application that works in the vs.net development web server.
I currently have an ASP.NET MVC application that exists. I want to add a

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.