I have an asp.net mvc project, and a function that streams out an image based on url parameters. like: /Image/40/100/50 streams out image with ImageID 40, 100px wide and 50px high.
So is there a way to change:
<img class="image" src="/Content/View?fileID=31" style="width: 500px; height: 100px; " />
To:
<img class="image" src="/Image/31/500/100" style="width: 500px; height: 100px; " />
In some fancy way? /Lasse