Top "Httppostedfilebase" questions

A class type in .NET used to assist with file uploads.

Is it possible to pass a File from a File Input to a Controller using jQuery?

I'm attempting to pass a file to my Controller as a HttpPostedFileBase so I can parse through the file and …

jquery asp.net-mvc file-upload httppostedfilebase
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.…

c# asp.net asp.net-mvc-3 httppostedfilebase
HttpPostedFileBase's relationship to HttpPostedFileWrapper

I understand the relationship between HttpPostedFileBase and HttpPostedFileWrapper, in terms of the need for both of them (i.e. in …

c# asp.net-mvc file-upload httppostedfilebase
How to convert httppostedfilebase to String array

public ActionResult Import(HttpPostedFileBase currencyConversionsFile) { string filename = "CurrencyConversion Upload_" + DateTime.Now.ToString("dd-MM-yyyy") + ".csv"; string folderPath = Server.MapPath("~/Files/"); string …

asp.net-mvc httppostedfilebase
C# MVC 4 ASP.net, How to Insert File into Database store in (binary)

Would someone mind to guide me, how to save file into my database, and also retrieve it if possible, I …

c# asp.net asp.net-mvc asp.net-mvc-4 httppostedfilebase
HttpPostedFileBase always remaining null mvc

i know that there is a lot of questions like this, but i read them all and null of them …

asp.net-mvc-4 httppostedfilebase
Cast HttpPostedFileBase to Stream

I'm working on an ASP.NET MVC project in in C#, trying to get upload a document from a form …

c# asp.net-mvc casting stream httppostedfilebase
ASP.NET MVC HttpPostedFIleBase is null

I have a @Html.BeginForm in my view which is suppose to allow the user to upload an image and …

asp.net-mvc httppostedfilebase