ASP .NET MVC2 application controller performs some action and redirects to grid page after that. Grid page can also invoked from menu. In this case no message should appear.
How to show action result ?
Is it best way to add some control to grid page which gets result message from session or query string and shows it or other idea ?
I found control in
http://www.codeproject.com/Tips/309920/Displaying-action-results-to-the-user-in-ASP-NET
but it seems to be webforms specific.
How to show action result in ASP .NET MVC2 C# application ? jQuery UI is used.
Also you may use additional action parameter determines whether display message or not. Or temporary cookie. Or different request method (POST instead of GET). Or additional header.