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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:51:19+00:00 2026-05-15T14:51:19+00:00

I am using ASP.NET MVC2 for my project. I want to send the user

  • 0

I am using ASP.NET MVC2 for my project. I want to send the user confirmation messages after actions.

Ideally:
User clicks on a link with a query string (i.e. a link to delete an entry)
The controller does what the link says, creates the success message, and uses RedirectToAction to get rid of the query string from the URL.
The new action displays the success message.

It was suggested I use a model error to do this, however I do not think that will work in this situation.

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-05-15T14:51:19+00:00Added an answer on May 15, 2026 at 2:51 pm

    You could use TempData:

    public ActionResult Index()
    {
        string message = TempData["message"] as string ?? string.Empty;
        // send the message as model so that the view can print it out
        return View("index", message);
    }
    
    [HttpPost]
    public ActionResult DoWork()
    {
        // do some work
        TempData["message"] = "Work done!";
        return RedirectToAction("index");
    }
    

    Internally TempData uses session in order to persist the information but it is automatically purged after the next request, so it will be available only on the next request following the storage.

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

Sidebar

Related Questions

I'm using asp.net mvc2 and trying to send a list of json objects with
I am using ASP.NET MVC2 and have a problem. After Log off I manually
I have created a new MVC2 project using the ASP.NET MVC2 Web Application, which
I have created an asp.net mvc2 project using the standard visual studio template which
Having problems with my ASP.NET MVC2 project. I'm using Fluent NHibernate as ORM, and
I want to call view using AJAX call with ASP.net MVC2.0 but it doesn't
I am using ASP.NET MVC2 and Entity Framework. I am going to simplify the
[NOTE: I'm using ASP.NET MVC2 RC2.] I have URLs like this: /customers/123/orders/456/items/index /customers/123/orders/456/items/789/edit My
I am using ASP.NET MVC2 with NHibernate, but am facing an issue. All calls
I have an asp.net mvc2 application that is using StructureMap 2.6 and NHibernate 3.x.

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.