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.