diff --git a/README.md b/README.md index e341572c..27863ee8 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ $ dotnet build "netly/" -c Release -o "netly/bin/" // get email from http form. string email = request.Body.Form.GetString("email"); // get password from http from. - string email = request.Body.Form.GetString("email"); + string password = request.Body.Form.GetString("password"); // get uploaded file from http form. (
). byte[] picture = request.Body.Form.GetBytes("upload"); });