Tagged Questions

0
votes
1answer
23 views

ActionResult helper and different types resolver

Idea is to use same action methods for different types of results I.E. /category/details/?resultFormat=json /category/details/?resultFormat=xml So to have some kind of A …
0
votes
2answers
53 views

WebResponse to HttpResponseBase. Is it possible?

Hi, 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 …
0
votes
1answer
133 views

Can someone explain how the struts2 XSL ResultType works?

I'm trying to figure out how to use the struts2 XSL ResultType. I just can't figure out how it is supposed to work and aside from the official documentation, I've found maybe two …
1
vote
1answer
62 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 regula …
0
votes
1answer
57 views

Why does ContentResult controller in ASP.NET MVC return UTF-16 when UTF-8 specified?

I have an ActionResult that returns XML for an embedded device. The relevant code is: return Content(someString, "text/xml", Encoding.UTF8); Even though UTF-8 is specified, the …
0
votes
1answer
39 views

How to get ContentType for file in ASP.NET MVC when using File Action Method

Hi there, 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 …
2
votes
1answer
129 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 …
0
votes
4answers
187 views

Disable Session state per-request in ASP.Net MVC

Hi, 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 …
0
votes
1answer
270 views

How to get the Jquery Autocomplete result event handler to work?

I wrote code that fails to use the JQuery autocomplete to fire a result function after the user selects something valid (below). By result, I mean result handler, a function that …
1
vote
3answers
249 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 …
1
vote
1answer
44 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( …
2
votes
3answers
349 views

How to pass XML as POST to an ActionResult in ASP MVC .NET

Hi, 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 …
5
votes
5answers
755 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 …
4
votes
4answers
251 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. Sin …
7
votes
1answer
154 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 …

1 2 next
15 30 50 per page