Skip to content

Instantly share code, notes, and snippets.

@arn-e
Created February 24, 2015 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arn-e/411c0b4be2e3171bd67a to your computer and use it in GitHub Desktop.
Save arn-e/411c0b4be2e3171bd67a to your computer and use it in GitHub Desktop.
[HttpGet]
public ActionResult ReadWidget(long id)
{
WidgetBusiness widgetBusiness = new WidgetBusiness();
Widget widget = widgetBusiness.Get(id);
return File(widget.Data, "image/jpg");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment