Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active July 3, 2018 12:02
Show Gist options
  • Save bjoerntx/873175a8be14de57b2c6e758e80a8daa to your computer and use it in GitHub Desktop.
Save bjoerntx/873175a8be14de57b2c6e758e80a8daa to your computer and use it in GitHub Desktop.
[HttpGet]
public string LoadDocument(string filename)
{
string sDocument = Convert.ToBase64String(
System.IO.File.ReadAllBytes(
Server.MapPath("~/App_Data/Documents/" + filename)));
return sDocument;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment