Tagged Questions
The actionresult tag has no wiki summary.
55
votes
2answers
9k views
In MVC, how do I return a string result?
In my ajax call, I want to return a string value back to the calling page.
Do I still using ActionResult or just return a string?
28
votes
4answers
9k views
How to return an XML string as an action result in MVC
I'm able to return JSON and partial views (html) as a valid ActionResult, but how would one return an XML string?
10
votes
5answers
2k views
Disable Session state per-request in ASP.Net MVC
I am creating an ActionResult in ASP.Net MVC to serve images. With Session state enabled, IIS will only handle one request at a time from the same user. (This is true not just in MVC.)
Therefore, on ...
10
votes
3answers
3k views
Recommended way to create an ActionResult with a file extension
I need to create an ActionResult in an ASP.NET MVC application which has a .csv filetype.
I will provide a 'do not call' email list to my marketing partners and i want it to have a .csv extension in ...
10
votes
1answer
4k views
Difference between FileStreamResult and FilePathResult?
I have a simple controller which returns images:
public class ImageController : Controller
{
[AcceptVerbs(HttpVerbs.Get)]
[OutputCache(CacheProfile = "StationeryImageCache")]
public ...
10
votes
3answers
5k views
What's the point of ActionResult return type?
What is the point of an action returning ActionResult?
9
votes
2answers
741 views
What are all the available ActionResults for ASP.NET MVC?
What are all the methods that return an ActionResult in ASP.NET MVC as of right now (ie. RedirectToAction, etc.)
I haven't found a good documentation resource that lists this kind of stuff.
8
votes
1answer
773 views
What are all the ASP.Net MVC Action Results?
Is there a list of all the ASP.Net MVC action results and their uses?
I've been busily using ActionResult for almost everything but I know that's not correct and that I should be using more specific ...
6
votes
1answer
379 views
RedirectToAction() vs. View() and the ternary operators?
when deciding on which ActionResult to return from a Controller Action I decided to use the ternary operators as opposed to the lengthier if-else. Here is my issue...
this code works
return
...
5
votes
4answers
628 views
Can you apply an ActionFilter in ASP.NET-MVC on EVERY action
I want to apply an ActionFilter in ASP.NET MVC to EVERY action I have in my application - on every controller.
Is there a way to do this without applying it to every single ActionResult method ?
4
votes
3answers
2k views
Asp.Net MVC How to unit test an ActionResult that returns Content?
For instance if I wanted to unit test the following controller what do I replace ???? with?
using System.Web.Mvc;
namespace MvcApplication1.Controllers
{
public class StatusController : ...
4
votes
6answers
2k views
How to pass XML as POST to an ActionResult in ASP MVC .NET
I am trying to provide a simple RESTful API to my ASP MVC project. I will not have control of the clients of this API, they will be passing an XML via a POST method that will contain the information ...
4
votes
6answers
5k views
How do I pass a Dictionary as a parameter to an ActionResult method from jQuery/Ajax?
I'm using jQuery to make an Ajax call using an Http Post in ASP.NET MVC. I would like to be able to pass a Dictionary of values.
The closest thing I could think of was to pass in a multi-dimensional ...
4
votes
4answers
839 views
A custom ActionResult for a multi-part http response?
I'd like to respond to an http request with both a txt file and an html page. This way the client can save the file and see a summary of that file's contents via an html page.
Since the file is ...
3
votes
1answer
2k views
ASP.NET MVC - ActionResult calling another JsonResult to get data?
Can I call a JsonResult method from my ActionResult? What I'm trying to do is to have an Area in my MVC.Site project to deal specifically with API (just return json so that I can reuse with non-mvc ...
3
votes
3answers
1k views
ASP.NET MVC: How to covert an ActionResult to string?
I would like to take an existing action method, render its return value to a string and ship it as a JSON for a response to an AJAX request.
To do this, I need to render an ActionResult to a string. ...
3
votes
2answers
746 views
Unit test or runtime ActionResult string output response via ExecuteResult?
The Question...
What is the best way to Unit Test the string response and content type from several Controller methods?
Using...
Each method returns an ActionResult, some of which are ViewResult ...
3
votes
2answers
450 views
Bestpractice DI with ASP.NET MVC and StructureMap - How to inject dependencies in an ActionResult
I edited my whole question, so do not wonder :)
Well, I want to have an ActionResult that takes domain model data and some additional parameters, i.e page index and page size for paging a list. It ...
3
votes
2answers
682 views
ActionResult redirect renders using ToString()
Using the following sample: http://www.west-wind.com/Weblog/posts/899303.aspx
The following line...
return req.RedirectingResponse.AsActionResult();
renders the string ...
3
votes
1answer
386 views
How to use MVC Action Results from regular web forms (faking ControllerContext)?
We have a pluggable framework that returns ActionResult objects that render things to a browser. One late breaking requirement is that our plugins should be callable from a regular ASP.NET Web Forms ...
3
votes
3answers
982 views
All inbuilt ActionResults in ASP.NET MVC
I'm looking for a list of the inbuilt (and 3rd party would be a bonus) ActionResults you have available to you in a controller in ASP.NET MVC.
So far I've discovered the following:
ContentResult - ...
2
votes
2answers
57 views
MVC String in ActionResult
I am using the default Controller named "Home".
I have the following ActionResult:
public ActionResult SetID(string ID)
{
int? result = MyGateway.GetAccountByID(ID);
Common.IDNum = result;
...
2
votes
2answers
491 views
Binding nested model with MVC3 on HttpPost
I am new to MVC3.
I have a submit button on a form and I want to bind a model which has 2-3 nested object models with many properties inside.
Is there a way to bind these nested objects without ...
2
votes
1answer
219 views
actionresult to refresh current page
From some of the action methods I want to return a result that will force current page to refresh.
I wrote this to acquire such result:
public class RefreshResult : ActionResult {
public ...
2
votes
3answers
203 views
Should I make my ASP.NET MVC controller actions virtual?
File -> New Project for ASP.NET MVC projects used to generate controllers with virtual actions. I'm not sure if that stopped with MVC 2 or MVC 3, but is this no longer a best practice?
2
votes
3answers
272 views
Can I return an action result from an action filter?
Usually I am validating my model in the action method before committing data to the database.
[HttpPost]
public ActionResult MyActionMethod(MyModelType model){
if (ModelState.IsValid){
//commit ...
2
votes
5answers
221 views
C# MVC Instant Response to Browser?
Again, asking MVC noob questions. Forgive my lack of experience.
I have a situation where I am using an MVC route to return a large XML file. Sometimes it can be very large. Currently, I'm using a ...
2
votes
1answer
209 views
onResult HTTPService
I have a HTTPService:
<mx:HTTPService id="scoreService" url="http://" method="POST" result="onResult(event)">
<s:request xmlns="">
<name>{..}</name>
...
2
votes
1answer
318 views
Return int from MVC Action with Ajax.BeginForm
Whats the simplest way of just returning an int from an Ajax MVC Action call?
I am currently trying:
public ContentResult Create(MyModel model)
{
return Content("1");
}
using ...
2
votes
1answer
306 views
MVC ActionResult and QueryString
I'm a little puzzled with QueryStrings and ActionResult
I have a URL coming in from jQuery as:
url: "/ToBePaid/Receipt/" + $(this).attr('value') + "&receipt=" + $(this).attr('checked')
which ...
2
votes
2answers
2k views
How do I perform a secondary action (i.e. calculate fields) in ASP.NET MVC?
I need to do some calculations on an ASP.NET MVC View, an action different than the form submission. I've tried various methods of passing the current Model on to a new controller action via an ...
2
votes
2answers
271 views
What should my JSON string look like in my Action?
in .NET MVC my action looks like:
public ActionResult TestAjax(string testID)
{
return Content(@"{first: ""1"", second : ""2""}");
}
In my JavaScript I am doing:
function(data)
{
...
1
vote
1answer
38 views
How to run some code in every ActionResult method and return result if necessary?
I need to run a certain function in every ActionResult and return a certain value if necessary.
Let's say this function's name is A(). I can do this manually:
ActionResult Index() {
if (...) ...
1
vote
1answer
28 views
MVC 3 - View rendered on top of the layout page
I am having a problem rendering my view in the layout page using mvc 3.
When I render the result using a html helper, my output is on top of everything on the page, but I have used the following
...
1
vote
4answers
186 views
Asp.net MVC How To Open New Window From Controller
So I have a scenario where I want to return my ActionResult...Return View("ViewName", "MasterPageName",model); in a popup window of a specific size I can pass...
E.G.:
public ActionResult PopUp()
{
...
1
vote
2answers
61 views
Is it possible to make a non ActionResult Method to return an ActionResult… Or best/neatest workaround?
I have an object from a database that is used in a lot of places in my application.
The actual precise object is a bit complicated to build, and, especially during development, I have changed it ...
1
vote
1answer
255 views
Asp.Net MVC SiteMap - siteMapNode: How to redirect to Controller ActionResult
I have a simple menu based on a standard xml sitemap, that when a link is clicked I want it to post to a controller actionresult that does not have a view/page. I don't seem to have a problem when I ...
1
vote
2answers
804 views
MVC3 - Ajax loading icon
I would like to show an ajax loading icon during a ActionResult request that can take a few seconds to process.
What is the best approach to accomplished this?
I only want to display the icon after ...
1
vote
1answer
332 views
ASP.NET MVC 3 get HTML from viewmodel
I have a Controller with a method like this:
public ActionResult Index()
{
CustomerInfoViewModel viewModel = CustomerInfoModel.Load();
return View("Report", viewModel);
}
Now I'd like to ...
1
vote
1answer
536 views
In MVC3, what is the difference between the “JavaScript” and “Content” functions?
In ASP.NET MVC3, the following two methods seem to return the same results:
public ActionResult Blah()
{
return JavaScript("alert('" + DateTime.Now + "');");
}
public ActionResult Blah()
{
...
1
vote
1answer
323 views
Combining actionresult and jsonresult
I want to do this:
public ActionResult Details(int id)
{
Object ent = new{ prop1 = 1, prop2 = 2};
if (Request.AcceptTypes.Contains("application/json"))
return ...
1
vote
2answers
349 views
Returning an ActionResult from another ActionResult
Say I have the following code, mocked up in notepad, so excuse any minor errors :)
//Default page
public ActionResult Index()
{
var musicViewModel
{
Albums = ...
1
vote
1answer
120 views
MVC user format output
I have a C# MVC Project, and allow for users to select the way in which their data can be outputted (i.e. speed in kmh/mph, time in CST, ESt, etc., Distance in KMs, Miles, Meters, Hecters, etc.). ...
1
vote
2answers
585 views
How do I use Ninject with ActionResults while making the controller IoC-framework-agnostic?
Nearly all of the Ninject examples I've seen explain how to use it with ASP.NET MVC, which will automatically inject dependencies into controllers. How would I use Ninject manually though? Let's say I ...
1
vote
1answer
237 views
“Default decoder could not decode result”
Here are the files -
MXML:
<mx:HTTPService id="score" url="http://...score.php" fault="mx.controls.Alert.show(event.fault.faultString)"
method="POST" ...
1
vote
2answers
220 views
MVC Handler for an unknown number of optional parameters
I am workingon an MVC route that will take an unknown number of parameters on the end of the URL. Something like this:
domain.com/category/keyword1/keyword2/.../keywordN
Those keywords are values ...
1
vote
1answer
470 views
Custom View Engine vs Custom Action Result
Hey!
I have a scenario where the user have the option to click the button "download" and I should create a csv file, that contains history data, and then let the user save the file locally. As I ...
1
vote
1answer
614 views
Asp.Net MVC post action result
How do you set the result of an action result to use Post and not Get.
I need to redirect the result to an external site that requires the data to be sent using the post method.
(Would like to know ...
1
vote
2answers
456 views
WebResponse to HttpResponseBase. Is it possible?
In a controller action, I am manually sending a form to a remote URL using WebRequest. I successfully receive a WebResponse containing an html page to display. I would like to "paste" this response as ...
1
vote
1answer
745 views
How to get ContentType for file in ASP.NET MVC when using File Action Method
Attempting to use asp.net mvc's Action Result of File.
So it would seem that I have to specify a ContentType for the file to be sent to the browser. Currently there is no real limit to what types of ...