vote up 1 vote down star

In webforms, we would do somthing like this to set up a hander to generate a dyanmic image:

<img src="/barchart.aspx?width=1024&height=768&chartId=50" >

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.

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.

any pointers or help in advance is greatly welcomed.

flag

2 Answers

vote up 2 vote down check

If I understand the situation correctly:

public class ImageGeneratorController : Controller {
    public ActionResult BarChart(int width, int height, int chartId) {
        // ASP.NET MVC will map the request parameters to method arguments
    }
}

To create a link:

Url.Action("BarChart", "ImageGenerator", new {
    width = 1024,
    height = 768,
    chartId = 50
});

Will output:

/ImageGenerator/BarChart?width=1024&height=768&chartId=50
link|flag
this is what I wanted. What does the URL look like to map to this ? – MikeJ Apr 28 at 15:42
/BarChart/1024/768/50 ? – MikeJ Apr 28 at 15:43
I updated my answer to show URL generation and the result – David Brown Apr 28 at 15:43
@MikeJ -- not unless you use something other than default routes. – tvanfosson Apr 28 at 15:44
Thanks David. Thats really, really helpful to me. I think thats one of the confusing things about MVC for n00bs like me. Is how to map "old" urls to the /controller/action/parameter method, but I can see that there is a way that this doesnt have to be done this way. nice. – MikeJ Apr 28 at 16:39
vote up 2 vote down

You don't need a view to achieve this. You can have an action that returns a FileResult and write the image to the response like this :

public FileResult BarChart(int width, int height, int chartID) {
    //create the chart
    return new FileContentResult(byte[] fileContents, string contentType);
}

And the html :

<img src="/yourController/BarChart/1024/768/50">
link|flag
Wouldn't that specific URL require a custom named-route? – David Brown Apr 28 at 15:46
Yes. At least for the parameters to look that way. – çağdaş Apr 28 at 15:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.