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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:51:20+00:00 2026-06-07T09:51:20+00:00

Is there a way I can add extra data to my Ajax ActionResult in

  • 0

Is there a way I can add extra data to my Ajax ActionResult in MVC?

I want my controller to create a new PartialView and then add extra data to it which can then be picked up in the Ajax OnSuccess function.

I have tried passing back a Json result from the controller with my custom data in it and using that in the OnSuccess function, but then, because I was only passing back my custom data and no HTML, the Ajax UpdateTarget div now goes blank because Ajax fills the div with my Json result which is not HTML.

I would like a way for my controller to send back a PartialView so my UpdateTarget div gets updated, that also contains my own custom data which I can use in the OnSuccess function.

Any help would be appreciated.

Thanks
Mike

  • 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-07T09:51:22+00:00Added an answer on June 7, 2026 at 9:51 am

    You can use the following method in your controller:

      public string UpdateDivWithContent()
      {
          var yourModel = ... //make custom data to create your partial    
          return RenderPartialViewToString("YourPartialViewName", yourModel)
      }
    

    I put this method into basic controller:

      protected string RenderPartialViewToString(string viewName, object model)
        {
            if (string.IsNullOrEmpty(viewName))
            {
                viewName = ControllerContext.RouteData.GetRequiredString("action");
            }
    
            ViewData.Model = model;
    
            using (StringWriter sw = new StringWriter())
            {
                ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
                ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
                viewResult.View.Render(viewContext, sw);
    
                return sw.GetStringBuilder().ToString();
            }
        }
    

    Call this action from your view using manual ajax call, for example:

    $.ajax({
        url: '@(Url.Action("UpdateDivWithContent","YourControllerName")'
        type: 'POST',
        data: {
            //some params to be passed to the controller
        },
        success: function (result) {
            //result is an html string of your customized partial view
            $("#yourDivId").html(result);
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way that I can add non-static data to dataannotation attributes (either
Is there a way I can add support for syncing my program's settings with
Is there a way you can add a column to the Details view of
Is there any way I can add a static extension method to a class.
Is there any way I can add this to my plugin? $this->_helper->viewRenderer->setNoRender();
I have a reference to a UIBarButtonItem, is there a way I can add
Is there a way that I can add alias to python for encoding. There
Is there a way to pass a piece of extra data along with a
Is there any way can declare a bean in just like JSP UseBean in
Is there way that I can read the file from remote server using fopen

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.