Skip to content

Instantly share code, notes, and snippets.

@Boztown
Last active December 31, 2015 23:29
Show Gist options
  • Save Boztown/8060766 to your computer and use it in GitHub Desktop.
Save Boztown/8060766 to your computer and use it in GitHub Desktop.
if (model.ThumbnailFile != null)
{
var thumbGUID = Guid.NewGuid();
var newFilename = thumbGUID + ".jpg";
// save thumbnail
model.ThumbnailFile.SaveAs(imageUploadPath + "/" + newFilename);
<form action="/live/collection/edit" enctype="multipart/form-data" method="post">
<input type="file" name="ThumbnailFile" id="ThumbnailFile" />
@using (Html.BeginForm("editaudio", "multimedia", FormMethod.Post, new {enctype = "multipart/form-data"}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment