asp.net mvc multi-parameter requests for dynamic images? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:34:53Z http://stackoverflow.com/feeds/question/798581 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/798581/asp-net-mvc-multi-parameter-requests-for-dynamic-images 1 asp.net mvc multi-parameter requests for dynamic images? MikeJ 2009-04-28T15:36:23Z 2009-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>&lt;img src="/barchart.aspx?width=1024&amp;height=768&amp;chartId=50" &gt; </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#798594 3 Answer by David Brown for asp.net mvc multi-parameter requests for dynamic images? David Brown 2009-04-28T15:39:24Z 2009-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&amp;height=768&amp;chartId=50 </code></pre> http://stackoverflow.com/questions/798581/asp-net-mvc-multi-parameter-requests-for-dynamic-images/798614#798614 2 Answer by çağdaş for asp.net mvc multi-parameter requests for dynamic images? çağdaş 2009-04-28T15:45:25Z 2009-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>&lt;img src="/yourController/BarChart/1024/768/50"&gt; </code></pre>