Tagged Questions
The httppostedfilebase tag has no wiki summary.
11
votes
4answers
4k views
ASP.NET MVC posted file model binding when parameter is Model
Is there any way to get posted files (<input type="file" />) to take part in model binding in ASP.NET MVC without manually looking at the request context in a custom model binder, and without ...
8
votes
1answer
3k views
How do you convert a HttpPostedFileBase to an Image?
I am using ASP.NET MVC and I've an action that uploads the file. The file is being uploaded properly. But I want width and height of the image. I think I need to convert the HttpPostedFileBase to ...
5
votes
1answer
814 views
Why doesn't HttpPostedFile perform as advertised and buffer downloads to disk rather than memory?
I am uploading large files to an ASP.NET server using a standard HTML <input> control posting multipart-form data. This is an ASP.NET MVC application.
According to MSDN, the HttpPostedFile ...
2
votes
2answers
89 views
MVC ASP.net file upload : filepath is empty after submit
I've this HTML:
<% using (Html.BeginForm("Upload", "BulkUpload", FormMethod.Post, new { enctype = "multipart/form-data" })) { %>
<%: Html.TextBoxFor(model => model.UploadFile, new { ...
2
votes
4answers
350 views
HttpPostedFileBase.SaveAs working but no file uploaded and no exceptions
First, here is my code:
private Shoe ProcessForm(Shoe shoe, HttpPostedFileBase image)
{
try
{
shoe.Slug = CMSHelper.SanitizeTitle(shoe.Name);
shoe.LastModification = ...
2
votes
1answer
890 views
System.IO.Stream in favor of HttpPostedFileBase
I have a site where I allow members to upload photos. In the MVC Controller I take the FormCollection as the parameter to the Action. I then read the first file as type HttpPostedFileBase. I use ...
2
votes
3answers
465 views
How do I unit test a method containing a static method?
Can this be done? Here is the method I'm testing:
public void SaveAvatarToFileSystem()
{
Directory.CreateDirectory(AvatarDirectory);
_file.SaveAs(FormattedFileName);
}
In my unit test, I'm ...
1
vote
1answer
67 views
MVC - Don't save null image data if image was not re-uploaded in HTTP post (from SportsStore example)
I have been following the SportsStore example project in Apress Pro ASP.NET MVC 3 Framework book and trying to apply the concepts to my application. One area that is bugging me is that in the sample, ...
1
vote
2answers
669 views
cannot save HttpPostedFileBase to session variable and use twice
Good morning -
I am attempting to save an HttpPostedFileBase (which will always be a simple CSV file) to a session variable like so:
[HttpPost]
public ActionResult Index(HttpPostedFileBase ...
1
vote
2answers
2k views
Model binding HttpPostedFileBase and then storing the file to datastore
ASP.NET MVC seems to correctly automatically bind between HTML form's file input field and HttpPostedFileBase. On the other hand it cannot bind from file input field to byte array..I tried and it ...
0
votes
0answers
13 views
Moq'ing HttpPostedFile for 3rd Party API
I'm building a custom module by extending ActiveSocial for DotNetNuke and using ActiveSocial's API that I have no control over... and I'm trying to unit test my code (using C#).
In using this API - ...
0
votes
1answer
444 views
MVC3/EF4.1 Binding HttpPostedFileBase to model and adding to DB
I have an ActionResult which binds data to the model and adds it the the DB. Now what I want, is to have a file uploader, and the ActionResult to store the files and adding their FileName to the DB ...
0
votes
3answers
791 views
ASP.NET MVC2 +file uploading (HttpPostedFileBase class)
I have problem with uploading my file. I want to upload it from my edit view:
<%
using (Html.BeginForm("edit","profile",FormMethod.Post, new { enctype="multipart/form-data" }))
{%>
...
0
votes
1answer
661 views
C# HttpPostedFileBase object.ContentType property check for supported type validation
I am trying to validate file upload by supported file types, for now I am comparing ContentType property with list of supported file types like "text/xml" "application/x-zip-compressed" etc. I have ...
0
votes
2answers
386 views
ASP.NET MVC passing Model *together* with files back to controller
Ok, I've been going at this for several hours and I simply cannot find the solution.
I want to get some data from my user. So first, I use a controller to create a view which receives a Model:
...
0
votes
1answer
245 views
ASP.NET MVC File Uploading
HI there,
My model (partial)
public class Document : HttpPostedFileBase
{
public string DocumentTitle { get; set; }
public string DocumentType { get; set; }
My action
...
0
votes
1answer
215 views
When I try to upload a file in ASP.NET MVC, it shows as null
For some reason the paramater OriginalLocation is always null in the following code. What am I doing wrong?
Controller:
[HttpPost]
public ActionResult File(HttpPostedFileBase OriginalLocation, ...
0
votes
2answers
736 views
ASP.Net MVC image upload failing in Google Chrome
I have an image upload form
<% using (Html.BeginForm("PictureValidateAndSave", "UserGallery", new {}, FormMethod.Post, new { enctype = "multipart/form-data"})) { %>
<table>
...