以下是我的表格
<form id="postProblemForm" action="/Problems/Post" method="post">
<input type="text" id="problemSubject" name="problemSubject" class="inp-form"/>
<input type="file" id="uploadFile" name="uploadFile"/>
<textarea rows="" cols="" class="form-textarea" id="problemDescription" name="problemDescription"></textarea>
</form>
我必须将此表格发送给控制器。控制器代码是
[HttpPost]
public void Post(FormCollection form)
{
string subject = form["problemSubject"];
string description = form["problemDescription"];
HttpPostedFileBase photo = Request.Files["uploadFile"];
}
我可以轻松获得“problemSubject”和“problemDescription”值。但不知道如何获取上传的图像并将其保存在服务器端。我想保存在“~/ProblemImages”。请帮忙。