Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<img src="imagemanager.ashx?[query string goes here]" />
class ImageManager : IHttpHandler
{
public void Process(HttpContext context)
{
var something = context.Request.QueryString["key"];
var image = new Image();
image.Load(...);
context.Response.ContentType = "image/jpg";
context.Response.WriteBinary(image.ToBinary());
}
IsReusable { get { return false; } }
}