Yes, there is a way to generate and maintain images dynamically using ASP.NET MVC. Here is an example:
public class HomeController : Controller { public ActionResult MyImage() {
And then just include this image in the view:
<img src="<%= Url.Action("myimage", "home") %>" alt="my image" />
Darin Dimitrov
source share