Last active
June 2, 2017 17:18
-
-
Save JosiahSiegel/4928fea03b4d64aaea94 to your computer and use it in GitHub Desktop.
#ASP .NET csv upload fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected void Page_Load(object sender, EventArgs e) | |
{ | |
Page.Form.Attributes.Add("enctype", "multipart/form-data"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment