asp.net mvc multi-parameter requests for dynamic images? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:34:53Zhttp://stackoverflow.com/feeds/question/798581http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/798581/asp-net-mvc-multi-parameter-requests-for-dynamic-images1asp.net mvc multi-parameter requests for dynamic images?MikeJ2009-04-28T15:36:23Z2009-04-28T15:45:25Z
<p>In webforms, we would do somthing like this to set up a hander to generate a dyanmic image:</p>
<pre><code><img src="/barchart.aspx?width=1024&height=768&chartId=50" >
</code></pre>
<p>Then of course we would write code on the .aspx page to render the image using the parameters and write it back into the response. </p>
<p>I am honestly not sure how to set up/handle such a request with MVC and how we would activate it (in general terms) from a view.</p>
<p>any pointers or help in advance is greatly welcomed.</p>
http://stackoverflow.com/questions/798581/asp-net-mvc-multi-parameter-requests-for-dynamic-images/798594#7985943Answer by David Brown for asp.net mvc multi-parameter requests for dynamic images?David Brown2009-04-28T15:39:24Z2009-04-28T15:39:24Z<p>If I understand the situation correctly:</p>
<pre><code>public class ImageGeneratorController : Controller {
public ActionResult BarChart(int width, int height, int chartId) {
// ASP.NET MVC will map the request parameters to method arguments
}
}
</code></pre>
<p>To create a link:</p>
<pre><code>Url.Action("BarChart", "ImageGenerator", new {
width = 1024,
height = 768,
chartId = 50
});
</code></pre>
<p>Will output:</p>
<pre><code>/ImageGenerator/BarChart?width=1024&height=768&chartId=50
</code></pre>
http://stackoverflow.com/questions/798581/asp-net-mvc-multi-parameter-requests-for-dynamic-images/798614#7986142Answer by çağdaş for asp.net mvc multi-parameter requests for dynamic images?çağdaş2009-04-28T15:45:25Z2009-04-28T15:45:25Z<p>You don't need a view to achieve this. You can have an action that returns a <code>FileResult</code> and write the image to the response like this :</p>
<pre><code>public FileResult BarChart(int width, int height, int chartID) {
//create the chart
return new FileContentResult(byte[] fileContents, string contentType);
}</code></pre>
<p>And the html : </p>
<pre><code><img src="/yourController/BarChart/1024/768/50">
</code></pre>