Okay, so I was having a weird file upload problem. I had some code set up like this on the cshtml file.
<form method="post" action="~/meme/createcustom2" id="submitimage" name="submitimage">
<div class="drag-box">
<div class="drag">
<div id="dragandrophandler">
<label class="hand">
Drag File or
Click to Upload…
<input type="file" id="uploadFile" name="uploadFile"> </label>
</div>
</div>
<span class="or">Or</span>
<span class="uploadBtn" id="uploadBtn">
<a href="#" class="btn">UPLOAD <i class="fa fa-upload" aria-hidden="true"></i></a>
</span>
<p>Choose an image from your computer</p>
</div>
And no matter what I did, the file wasn't uploading. I'd see the entry in the Forms collection, but no entry in the Files collection. Well, that vexed me this entire morning.
What am I missing?