Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

HttpPostedFile.FileName - Different from IE

When I upload a file to a site using the ASP:File control the FileName property is different in IE and Firefox. In Firefox, it just provides the name of the file, but IE provides the full path to the ...
4
votes
1answer
829 views

C# - I cannot reference HttpPostedFileBase

I am using MVC .NET in a distributed environment with CSLA and I can reference HttpPostedFileBase from one of my web layers (eg Website.MVC), but I cannot reference HttpPostedFileBase from a separate ...
2
votes
1answer
110 views

Java library for reading multipart/form-data http body containing multiple files

Basically, the following is what the format of data look like (it should follow HTTP standard format) Content-Type: multipart/form-data; boundary=--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f ...
2
votes
1answer
876 views

How should i save a HttpPostedFile

Situation, a user MAY upload a file and MAY trigger the spam filter. If it does trigger the spam filter i save all the post data and show a captcha. If the 'bot' doesnt succeed by the time the session ...
1
vote
4answers
236 views

File is locked after HttpPostedFile SaveAs(LocationOnServer)

I have an aspx webpage that uses as handler to save uploaded files via swfupload I am saving the file on the server like this: HttpPostedFile uploadedFile = Request.Files["Filedata"]; ...
1
vote
1answer
147 views

Is there a way to get an httppostedfile WITHOUT using the fileuplaod control?

I have a class that needs an System.Web.HttpPostedFile object. In most cases this is obtained when the user uploads a pic. However, in cases where they don't I need to pass a default image to the ...
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
82 views

How to record files on a server with minimal access using MVC

How to record files on a server with minimal access using MVC. The next version of the code is not suitable as it will be clogging up the domain. Controller code: var fileFile = Request.Files["p" ...
0
votes
1answer
105 views

How to send attached image within a HttpWebRequest

public class UploadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.Clear(); context.Response.ContentType = ...
0
votes
2answers
49 views

How to Send and Receive file?

I want following type of functionality There are two users A and B both are visiting same page This page has a button(Send File) . When A clicks on button an Open Dialog box should appear When ...
0
votes
2answers
558 views

Upload file in ASP.NET MVC (Again!)

I have a problem with uploading file in asp.net mvc 2. My controller function's parameter is a FormCollection type. Because number of fields are too many, I can't seperate each field as parameter. I ...
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
2answers
475 views

receiving xml file via http post

I have a test script to receive an xml file via http post and it appears to work ok when I use it internally. When I move the script to a web server which can be accessed externally nothing appears to ...
0
votes
3answers
1k views

Invalid Cast Exception in HttpFileCollection

I have an extension method below, but when I run this, the foreach gives me InvalidCastException and it says * Unable to cast object of type 'System.String' to type ...
0
votes
1answer
420 views

Error while installing Poster (Python Module)

I'm trying to install Chris Atlee's python Poster library so I can upload a file using a HTTP POST query from within my script. On python 2.3, when I type # python setup.py install, I get the ...
0
votes
2answers
101 views

How to get past null characters in a file posted to an asp.net form?

I have an asp.net MVC application that takes in uploaded NMEA track files from small GPS loggers. In some cases, the loggers will inject null (0x0) values into the track file text. Is there a way to ...
0
votes
1answer
110 views

Inconsistency in file before and after upload to Oracle DB

I'm trying to get my website to allow users to upload various files (HttpPostedFile), which are then stored in an Oracle database as BLOBs. Here's what I've got so far: public static bool ...
0
votes
3answers
986 views

Getting the original files create date upon upload

We have a process in place that uploads files to our website. It has become important to the users to be able to see when those files were created. I'm looking for a way to extract the original ...