i try Request.Files, HttpContext.Request.Files but got no luck
html form:
<form name="" method="post" enctype="mulitipart/form-data">
<input type="file" name="file" />
</form>
|
3
|
i try Request.Files, HttpContext.Request.Files but got no luck html form:
|
|||
|
|
|
|
In your question you have a type-o. If that was in the final code, it would cause an issue. It's "multipart/form-data" not "mulitipart/form-data". |
||
|
|
|
|
The simplest way to handle a file in the controller is to use the HttpPostedFileBase type:
|
||
|
|
|
|
Velio, I have my form tag coming from masterpage, so, what is the solution? |
||
|
|
|
|
Most probably you have another form on the page comming from your master(s) and using the standard ASP.NET form with runat='server'. I had same issue when a form with runat='server' exists on the page. Hope this helps, Regards |
||
|
|
|
|
Request.Files should do it. Scott Hanselman has a little blog post about this
|
|||
|
|
|
|
Did you try ControllerContext.HttpContext.Request.Files? |
||
|