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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T16:17:28+00:00 2026-06-04T16:17:28+00:00

I have a controller with a method which returns a partial view and generates

  • 0

I have a controller with a method which returns a partial view and generates ViewData. Then, I have some methods, each of them returns Json objects and ViewData. But, the ViewData is not getting refreshed. How to refresh it? Is this possible?

public ActionResult FirstMethod() {
    ViewData["someList"] = ...;
    return PartialView(someOtherList);
}

public JsonResult SomeMethod()
{
    ViewData["someNewList"] = ...;
    return new JsonResult { ... };
}

But, although SomeMethod() is called after FirstMethod(), the ViewData which I use in my view is someList.

  • 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-04T16:17:29+00:00Added an answer on June 4, 2026 at 4:17 pm

    Is this possible?

    No, it’s not possible. The ViewData is a weakly typed dictionary which could be used (although I wouldn’t recommend using it) to pass information between a controller and a view. Its lifetime is tied to that of the controller action execution pipeline. So once the view is rendered it’s over. No controller, view, ViewData, … exists anymore. Only HTML rendered in the client browser.

    Then you send an AJAX request to the server again. This is completely new request that has nothing to do with the first one (which was used to render the view initially) and thus a new instance of the controller is created with its own ViewData. Setting ViewData in a controller action that returns JSON is useless because since this action will be invoked with javascript, all the information that you want to pass from the controller to the javascript success handler must be part of the JSON object that you return.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a controller method that returns a jSON object and in one calling
I have a method in the controller which returns a string. I need to
I have a controller which has a method called history class UsersController < ApplicationController
My site is open to all but i have a controller with some method
In my init I have: $contextSwitch = $this->_helper->getHelper('ForceContext'); $contextSwitch->addActionContext('favourite-listing', 'json')->initContext(); In my controller method
In indexAction() method of IndexController I have called the method of model which returns
I have a collection which returns a model for each date within a given
I have a _layout page which has a login box (partial view) and that
I have a strong typed view model and a MetaData partial class which has
I have a controller method with the following signature: [AcceptVerbs(HttpVerbs.Post)] public ActionResult UpdateValues(int id,

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.