active questions tagged file-upload - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:51:18Zhttp://stackoverflow.com/feeds/tag/file-uploadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861967/php-mysql-file-contents-escape-problem0PHP MYSQL file contents escape problemMichael2009-12-07T18:30:33Z2009-12-08T00:19:29Z
<p>Hi guys and girls,</p>
<p>I am attempting to upload a .pdf file into a mysql database using php.</p>
<p>It is all good except for the contents of the file. No matter how I seem try to escape special characters, the query always fails, mostly with "Unknown Command \n".</p>
<p>I have used addslashes, mysql_real_escape_string, removeslashes etc.</p>
<p>Does anyone have any ideas on how to escape file contents?</p>
<p>Many Thanks,</p>
http://stackoverflow.com/questions/1849330/what-to-do-about-storing-user-uploaded-files-in-a-zend-framework-application1What to do about storing user uploaded files in a Zend Framework application?Andrew2009-12-04T20:04:30Z2009-12-05T01:54:42Z
<p>I'm creating a web application that will involve habitual file uploading and retrieval (PDFs, Word Documents, etc). I have a few "best-practices" questions:</p>
<ol>
<li><p>Where should I store these files in relation to my application?</p>
<ul>
<li>I need to be able to link to them in my view script so a user can download/view the contents of the files. Does this mean an <code>uploads</code> directory in my <code>public</code> directory?</li>
<li>I also want it to be easy for me to deploy a new version of my application when changes are made to the code. Currently I have a process where I upload my application in a directory titled with the current date (i.e. <code>2009-12-01</code>) and create a sym link to it titled <code>current</code>. This would mean that the <code>uploads</code> directory would need to be outside of this directory so it could be shared among all the different versions of the application, regardless of which one is being used at the time.</li>
</ul></li>
</ol>
<p>um...I guess that's my major question for the moment. =]</p>
http://stackoverflow.com/questions/1811929/php-uploaderrnotmpdir0PHP - UPLOAD_ERR_NO_TMP_DIRunknown (google)2009-11-28T07:58:01Z2009-11-28T08:04:46Z
<p>I am using Cbeyond (www.cbeyond.com, some of you might be familiar with them) as a PHP Enabled webhost, I'm having issues with my PHP Upload functions, when I check as follows: </p>
<pre><code>$error = $_FILES['uploadedfile']['error'];
echo $error;
</code></pre>
<p>I get "6", for the error message: "UPLOAD_ERR_NO_TMP_DIR"</p>
<p>I have a /tmp directory at my root, here is the file structure:</p>
<pre><code>/ <--- ftp root (contains a working /tmp)
/www/htdocs/ <-- webroot
</code></pre>
<p>I've tried creating: </p>
<pre><code>/www/htdocs/tmp (no luck)
</code></pre>
<p>Is there anyway to create a tmp location on the fly, I just need to parse an uploaded .txt file into my MySQL DB.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1805421/how-to-upload-a-file-from-app-in-vc-6-to-a-web-server0How to upload a file from app in VC++ 6 to a web server?Arvind Singh2009-11-26T19:55:33Z2009-11-26T20:20:48Z
<p>I have an application in VC++ 6 (not MFC) , feature requires it to upload a file to a web server on regular basis. Web server is under our control, anonymous upload scripts/page are already setup that would accept a file manually. </p>
<p>How to program in VC++ 6 to upload? which classes to use?
I understand it is much possible with smtp and ftp but how through http?</p>
http://stackoverflow.com/questions/1799094/file-upload-in-asp-net-how-can-i-prevent-exceptions0File upload in ASP.NET - How can I prevent exceptions?anay2009-11-25T18:41:53Z2009-11-25T20:07:55Z
<p>I have a FileUploader control in my web form. If the file being uploaded is already present, I want to delete it, and overwrite it with the newly-uploaded file. But I get an error, as the file is in use by another process, and thus the application can't delete it. Sample code:</p>
<pre><code>if (FUpload.HasFile)
{
string FileName = Path.GetFileName(FUpload.PostedFile.FileName);
string Extension = Path.GetExtension(FUpload.PostedFile.FileName);
string FolderPath = ConfigurationManager.AppSettings["FolderPath"];
string FilePath = Server.MapPath(FolderPath + FileName);
if (File.Exists(FilePath))
{
File.Delete(FilePath);
}
FUpload.SaveAs(FilePath);
}
</code></pre>
<p>Is there anything I can do apart from writing the code in <code>try</code>/<code>catch</code> blocks?</p>
http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django6Validating Uploaded Files in DjangoAlasdair2009-11-17T00:12:02Z2009-11-25T11:20:19Z
<p>A Django app that I am working has an <code>Event</code> model. An <code>Event</code> may have associated photos, static html files and pdf files.</p>
<p>I would like to allow trusted users to upload these files, but I am wary about security, especially having read the following <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield" rel="nofollow">in the Django docs</a> (link).</p>
<blockquote>
<p>Note that whenever you deal with
uploaded files, you should pay close
attention to where you're uploading
them and what type of files they are,
to avoid security holes. Validate all
uploaded files so that you're sure the
files are what you think they are. For
example, if you blindly let somebody
upload files, without validation, to a
directory that's within your Web
server's document root, then somebody
could upload a CGI or PHP script and
execute that script by visiting its
URL on your site. Don't allow that.</p>
</blockquote>
<p>How can I validate the different types of files? I would be interested to hear anyone's experience of dealing with this kind of thing, or links for further reading. I have a gut feeling that html files may be too risky, in which case I'll restrict upload permissions to the administrator.</p>
http://stackoverflow.com/questions/1785718/how-does-the-flash-player-know-when-you-have-successfully-uploaded-a-file2How does the Flash Player know when you have successfully uploaded a File?viatropos2009-11-23T20:27:18Z2009-11-23T21:11:53Z
<p>I am using Ruby, RestfulX, and Paperclip to upload a File, using the FileReference class.</p>
<p>I get the response from Paperclip in the terminal that says I've successfully saved the file, but it appears Flash never gets what it needs to know the upload has been successful.</p>
<p>I'm getting this error if I try to upload again while the CursorManager's clock is spinning:</p>
<pre>Error: Error #2174: Only one download, upload, load or save operation can be active at a time on each FileReference.</pre>
<p>It seems that I need to tell Flex that I've successfully saved the file. Is there a way to manually do that? Do I need to pass a session or cookie or anything?</p>
http://stackoverflow.com/questions/1763475/file-upload-memory-stream-security0File Upload / Memory Stream SecurityPhilip2009-11-19T14:01:59Z2009-11-19T14:41:13Z
<p>Hi,</p>
<p>We are thinking of have a form on our webpage that would allow people to email attachments through.</p>
<p>The method used to do this is via a memory stream, avoiding any files being written on to the actual server.</p>
<p>Is anyone aware of any security risks / how to protect yourself against these?</p>
<p>I would love to hear from you.</p>
<p>Best regards,
Philip. </p>
http://stackoverflow.com/questions/562696/asp-net-multiple-upload-with-jquery-multiple-file-upload-plugin5ASP.net - Multiple Upload with jQuery Multiple File Upload PluginRonnie Overby2009-02-18T20:31:09Z2009-11-15T16:11:15Z
<p>I know how to upload with ASP.net's FileUpload control.</p>
<p>What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files.</p>
<p>Here is exactly what it does when multiple files are selected for upload:</p>
<pre><code><input type="file class="multi MultiFile" id="MultiFile1_F3" name="file1[]" style="position: absolute; top: -3000px;">
</code></pre>
<p>
</p>
<p>But I cannot figure out how to manipulate these files from asp.net.
I have tried using Request.Files as the following link instructs:
<a href="http://stackoverflow.com/questions/363286/asp-net-upload-of-multiple-files-after-choosing-them-from-jquery">http://stackoverflow.com/questions/363286/asp-net-upload-of-multiple-files-after-choosing-them-from-jquery</a></p>
<p>That doesn't work. I think that only works for controls marked with runat="server" at compile time.</p>
<p>Does anyone know how to do this? Maybe something in Request.Form...?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/382464/httppostedfile-filename-different-from-ie4HttpPostedFile.FileName - Different from IERyan Smith2008-12-19T22:48:06Z2009-11-11T06:06:10Z
<p>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 file.</p>
<p>I have worked around this by adding the code:</p>
<pre><code>Dim FileName As String = file.FileName
If FileName.LastIndexOf("\") > 0 Then
FileName = FileName.Substring(FileName.LastIndexOf("\") + 1)
End If
</code></pre>
<p>But I'm not sure why that would be different between the different browsers. Does anyone know the reason for this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/307874/upload-image-to-database-from-detailsview-insert-mode0Upload Image to Database From DetailsView Insert ModeJon P2008-11-21T04:32:09Z2009-11-10T23:00:02Z
<p>I am attempting to upload an image to a database via a DetailsView containing an UploadFile control in the Edit Item template.</p>
<p>I have a stored procedure which handles the upload to a SQLServer DB which expects two parameters: AuthorName, varchar(20) and AuthorImage, varbin(20).</p>
<p>The DetailsView is associated with a SQLDataSource: Authors. The Authors data source has the stored procedure as the Insert Command.</p>
<p>I can grab the binary data from the UploadFile control during the ItemInserting event but I am at a loss as to how to attach the byte array to the AuthorImage parameter.</p>
<p>Any and all assistance appreciated and if possible answers in C# please.</p>
http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc2Trying to upload a file with ASP.NET MVCPure.Krome2009-04-05T05:32:27Z2009-11-10T22:56:47Z
<p>I am trying to upload a file with ASP.NET MVC.</p>
<p>The following code work perfectly fine:</p>
<pre><code>// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"];
if (uploadedFile != null &&
uploadedFile.ContentLength > 0)
{
binaryData = new byte[uploadedFile.ContentLength];
uploadedFile.InputStream.Read(binaryData,
0,
uploadedFile.ContentLength);
}
</code></pre>
<p>But what I am trying to do is use the new <code>FileCollectionModelBinder</code> found in the <em>futures</em> assembly.</p>
<p>I've found these two blog posts <a href="http://msmvps.com/blogs/luisabreu/archive/2009/03/17/the-mvc-framework-working-with-uploaded-files.aspx" rel="nofollow">here</a> and <a href="http://www.hanselman.com/blog/ASPNETMVCBetaReleasedCoolnessEnsues.aspx" rel="nofollow">here</a> explaining what to do. I follow these instructions but havne't had any luck -> the <code>file</code> object is always <code>null</code>.</p>
<p>Here is my method.</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]
Post post,
HttpPostedFileBase file)
{
UpdateModel(post);
...
}
</code></pre>
<p>Notice how i'm trying to upload a file AND upload some post information, to a Post object.</p>
<p>Can anyone make any suggestions?</p>
<p>For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-</p>
<pre><code><form method="post" enctype="multipart/form-data" action="/post/create">
</code></pre>
http://stackoverflow.com/questions/1702527/how-is-file-upload-handled-in-http0How is file upload handled in HTTP?jeffreyveon2009-11-09T17:31:38Z2009-11-09T17:36:09Z
<p>I am curious to know how webservers handle file uploads. </p>
<p>Is the entire file sent as a single chunk? Or is it streamed into the webserver - which puts it together and saves it in a temp folder for PHP etc. to use?</p>
http://stackoverflow.com/questions/519542/where-does-an-uploaded-file-in-asp-net-2-go4Where does an uploaded file in ASP.Net 2 go?ck2009-02-06T08:23:54Z2009-11-07T16:36:21Z
<p>I'm building a portal that will allow users to upload files. I need to make sure that these files do not contain viruses. My ideal solution would be to have the host OS AV keep a watch on temporary folders and scan any incoming files.</p>
<p>When a file is uploaded in ASP.Net 2, does it get written to disk in a temp folder, or is it persisted in memory? If it is written to disk, will IIS lock it so that the AV cannot remove it? And if it is written to disk, where?</p>
http://stackoverflow.com/questions/1494979/how-to-retrieve-multiple-values-from-the-select-field-using-commons-file-upload1How to retrieve multiple values from the select field using Commons File Upload?rrc7cz2009-09-29T21:12:04Z2009-11-06T23:03:21Z
<p><strong>Update:</strong> The problem ended up being the Flash component itself. It wasn't properly compiling the multiple values from the element. I notified the developers and they implemented a workaround. Commons FileUpload does support multiple values per the accepted answer.</p>
<p>I have a form, <em>enctype="multipart/form-data"</em>, with one </p>
<pre><code><select name="XX" multiple="multiple">
</code></pre>
<p>and a Flash upload component which allows the user to select multiple files. When handling the POST using Apache Commons FileUpload, I detect the <em>select</em> field via </p>
<pre><code>item.isFormField() == true
</code></pre>
<p>and continue to extract the details via</p>
<pre><code>// Process a regular form field
if (item.isFormField()) {
String name = item.getFieldName();
String value = item.getString();
}
</code></pre>
<p>The problem I'm having is that <strong>item.getString();</strong> returns only the first selected value from the <em>select</em> field; no matter how many items I pick, I only get the first item.</p>
<p>Likewise, when I use the standard servlet method for parameter extraction, ie.</p>
<pre><code>final String[] values = request.getParameterValues("XX");
</code></pre>
<p>values is empty, which I assume is because the form is encoded multipart.</p>
<p>How can I retrieve these multiple selected values from my multi-select field?</p>
<p>This (unanswered) question has also been <a href="http://forums.sun.com/thread.jspa?threadID=5395587" rel="nofollow">posed on the Sun forums</a> by another author.</p>
http://stackoverflow.com/questions/1674846/best-way-to-handle-very-large-http-uploads-and-downloads-on-the-server-side2Best way to handle very large http uploads and downloads on the server-sideSébastien Nussbaumer2009-11-04T16:09:04Z2009-11-06T19:43:24Z
<p>I've an upcoming project where I will need to handle very large uploads from browsers (either the classic input type="file" or a Java Applet), and looking for the best tool to do the job on the server.</p>
<p>Theses are the things I need :</p>
<ul>
<li>low memory consumption on the server</li>
<li>ability to save the file in its final destination on the server (no copying the file around)</li>
<li>no blocking of other important tasks done by the webserver</li>
<li>good handling of files up to 2 gb</li>
<li>authorization of files (permissions would be given in the app)</li>
</ul>
<p>I still have some latitude on what technology to use so I would like to have some advice in order to be able to choose the best technology on the server to handle this task :</p>
<ul>
<li>ASP.NET ?</li>
<li>Java ?</li>
<li>Amazon S3 ?</li>
<li>Other choices ?</li>
</ul>
<p>I'm more used to the Microsoft Stack, but willing to change if necessary : as told above, I'm just looking for the best tool for the job.</p>
<p>Thanks !</p>
<p>Update :
<strong>The server side is the part I'm really interested in for this question</strong>, not the client side.</p>
<p>It looks like it may be trivial, but when you start to digg a bit you see 4 Mb limitations with .NET, downloads that use a lot of memory, that CAN block other threads (when you have a limit on the number of threads, and if a thread can execute for the duration of 2 Gb file upload/download over the internet : well this ain't gonna scale very well, will it ?), etc.</p>
http://stackoverflow.com/questions/665334/file-upload-using-zend-framework-1-7-41File Upload using zend framework 1.7.4nitin2009-03-20T08:26:17Z2009-11-05T16:46:16Z
<p>I am trying to upload file using zend frame work but have not been successful. I have read <a href="http://akrabat.com/zend-framework-tutorial/" rel="nofollow">Akras tutorial</a>, which was helpful but when i used those techniques in my project I was not able to get it to work.</p>
http://stackoverflow.com/questions/1594111/how-to-convert-video-to-bytearray-in-c0How to convert Video to byteArray in C#?Madhup2009-10-20T12:02:04Z2009-10-20T12:19:34Z
<p>Hi,</p>
<p>I am using c# .net compact framework 3.5 and i want to convert a video file to byte array so that i may upload it on the server.</p>
<p>In the similar manner i am doing the image uploading which is getting the success result....</p>
<pre><code> HttpWebRequest request;
request.ContentType = "image/jpeg";
request.ContentLength = byteArray.Length;
request.Method = "PUT";
imageToByteArray(img).CopyTo(byteArray, 0);
using (Stream requestStream = request.GetRequestStream())
{
requestStream.Write(byteArray, 0, (int)Fs.Length);
requestStream.Flush();
requestStream.Close();
}
public byte[] imageToByteArray(Image imageIn)
{
MemoryStream ms = new MemoryStream();
imageIn.Save(ms,System.Drawing.Imaging.ImageFormat.Jpeg);
return ms.ToArray();
}
</code></pre>
<p>Somebody having the idea how to do this for the video files?</p>
http://stackoverflow.com/questions/1593225/how-to-select-multiple-files-with-input-typefile0How to select multiple files with <input type="file">?Mask2009-10-20T08:42:36Z2009-10-20T08:54:39Z
<p>In gmail,I can select several files at one time,</p>
<p>How to implement it?</p>
http://stackoverflow.com/questions/1547953/need-to-understand-why-upload-isnt-happening-in-this-case0Need to understand why upload isn't happening in this case?deostroll2009-10-10T13:29:53Z2009-10-10T13:35:11Z
<p>I've an html file with the below markup:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Upload Page</title>
</head>
<body>
<form id="frmUpload" action="UploadHandler.ashx" method="post" enctype="multipart/form-data">
<input type="file" /><br />
<br />
<input id="Submit1" type="submit" value="Submit" />
</form>
</body>
</html>
</code></pre>
<p>I have a handler (ashx) file to handle the upload which goes like this:</p>
<pre><code><%@ WebHandler Language="VB" Class="UploadHandler" %>
Imports System
Imports System.Web
Imports System.Diagnostics
Public Class UploadHandler : Implements IHttpHandler
Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
Dim str As String
str = "EncType = " & context.Request.ContentType
str &= vbCrLf
str &= "File Count = " & context.Request.Files.Count
context.Response.ContentType = "text/plain"
context.Response.Write(str)
End Sub
Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
Get
Return False
End Get
End Property
End Class
</code></pre>
<p>When I am working with the html page, I select a file and do a submit, I get a response like this:</p>
<pre><code>EncType = multipart/form-data; boundary=---------------------------7d9232a130656
File Count = 0
</code></pre>
<p>I was expecting the file count to be 1 here but it is 0...what is wrong?</p>
http://stackoverflow.com/questions/1539269/where-to-store-uploaded-files-in-php-mysql0Where to store uploaded files in PHP & MySQL?MartyIX2009-10-08T17:22:02Z2009-10-08T17:30:42Z
<p>I'm solving problem of storing files in my web app. </p>
<p>I've already done some applications where files were stored in filesystem (simple upload of a file via PHP) and I wasn't sure how to solve the security issues correctly (I have the webapp on a shared webhosting). Is there any "manual" or book which target these issues in detail?</p>
<p>Recently, I've done an webapp where files are stored in MySQL database and it seems to be very easy for usage and I don't need to solve the permissions for the files. The disadvantage is that there's additional overhead of the system.</p>
<p>What is better according to you? (I have small files ~ 100kB)</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1497267/uploading-images0uploading imagesPadma2009-09-30T10:29:18Z2009-09-30T10:41:42Z
<p>Hi, I got this error when I'm uploading the image into the folder:</p>
<blockquote>
<p>Warning: fopen(images1/image.jpg) [function.fopen]: failed to open stream: Permission denied.</p>
</blockquote>
<p>i gave read/write permissions. but its not working.How to rectify this error? Anyone can help me please?</p>
<p>Regards,
padma.</p>
http://stackoverflow.com/questions/1478434/how-is-the-file-uploading-progress-reported1How is the file uploading progress reported?deostroll2009-09-25T16:57:16Z2009-09-25T17:16:04Z
<p>I have been trying to implement an ajax-style file upload. I was wondering what we must do to report the uploading progress. I am trying to implement this in my asp.net web page.</p>
<p>I understand the mechanism by which we can upload a file, ajax-style, on a web page. I have been googling a lot about how to show a progress bar, but I don't see proper explanations. But I've come to understand that we have to manage this from the server-side some how. (cf <a href="http://stackoverflow.com/questions/1298565/file-upload-progress">http://stackoverflow.com/questions/1298565/file-upload-progress</a>)</p>
<p>Any ideas/code would be appreciated. Thanx in advance.</p>
http://stackoverflow.com/questions/1397828/is-there-any-way-to-upload-video-files-using-php-3Is there any way to Upload Video Files using PHP ?Tareq2009-09-09T06:20:05Z2009-09-22T12:47:14Z
<p>I want to upload and store video files to my server using PHP. Could any one please provide me the code?</p>
<p>Please keep in mind that these files are generally larger than 200 MB.</p>
http://stackoverflow.com/questions/1455002/php-file-uploading-and-storing0php file uploading and storingunknown (google)2009-09-21T15:08:55Z2009-09-21T15:49:11Z
<ol>
<li><p>I want to upload a file on my PHP server. I am currently able to upload it on server using the following code but I don't know how I can store it on the server.
How can I store the file in a specific directory?</p></li>
<li><p>I also want the users to be able to download the files but only once they log in not before that.
<br><br>
For example i store the file in directory <em>/myfiles</em> no-one must be able to download it
unless he is logged in
<br><br>
e.g. someone can download the file if he knows the file location
like <em>www.example.com/temp/myfile.txt</em>
<br><br>
I don't want that - user must not be able to download it unless he is logged in.</p></li>
<li><p>I have one page <em>B.php</em> in which there will be the download link. When the user clicks on that link he must be able to download the file. In short, he must get a <em>Save as/Open</em> pop up of browser when he clicks my link. How do I do that?</p></li>
</ol>
http://stackoverflow.com/questions/1444399/why-is-my-zip-file-corrupted-after-an-http-file-upload0Why is my .zip file corrupted after an HTTP file upload?Dave2009-09-18T12:57:31Z2009-09-18T22:53:32Z
<p>I'm trying to use a CGI script to accept and save a file from a program that is using an HTTP POST to send a zip file.</p>
<p>In the MIME section of the HTTP header it looks something like this:</p>
<pre><code>Content-Disposition: form-data; name="el_upload_file_0"; filename="BugReport.zip";\r\n
Content-Type: application/octet-stream\r\n\r\n
</code></pre>
<p>In my CGI code I'm using this:</p>
<pre><code> use CGI;
use strict;
my $cgi = CGI->new;
my $upload_file = $cgi->upload('el_upload_file_0');
my $time = time;
my $filename = "/tmp/$time.zip";
open TMP, ">$filename";
binmode TMP;
while (<$upload_file>) {
print TMP $_;
}
close TMP;
</code></pre>
<p>The file that keeps getting saved is somehow getting corrupt and is not a valid zip file. The HTTP request is being sent by a C# app and it's possible that it might be sending a corrupt zip file, but I doubt it. Is there anything I can do to troubleshoot further?</p>
http://stackoverflow.com/questions/1436152/asp-net-mvc-ajax-form-is-enctype-correct-why-doesnt-file-get-uploaded0ASP.NET MVC Ajax Form: Is enctype correct? Why doesn't file get uploaded?Fabio Milheiro2009-09-17T00:23:06Z2009-09-17T00:45:24Z
<p>In the case that the user doesn't have Javascript activated, in order to draw a form, I begin this way:</p>
<pre><code><% using (Html.BeginForm("Create", "Language", FormMethod.Post,
new {enctype="multipart/form-data"}))
{ %>
</code></pre>
<p>If the user has Javascript activated, the following code is used:</p>
<pre><code><% using (Ajax.BeginForm("Create", "Language",
new AjaxOptions { UpdateTargetId = "CommonArea" },
new { enctype = "multipart/form-data" }))
{ %>
</code></pre>
<p>The problem is this:</p>
<p>In the first case, I can get the file uploaded using the following instruction in the business layer:</p>
<pre><code>// Get the uploaded file
HttpPostedFile Flag = HttpContext.Current.Request.Files["Flag"];
</code></pre>
<p>In the second case, this instruction doesn't work. How do I know upload that file using the Ajax.BeginForm? Is the code right? Can anyone more experience advise about using jQuery plug-in to upload file before the form submission?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1399366/how-to-upload-the-wmv-file-using-file-upload-in-asp-net-2How to upload the .WMV file using file upload in asp.netDevathidhan.S2009-09-09T12:21:36Z2009-09-09T14:20:48Z
<p>When i uploading the .WMV file, i got following error.</p>
<p>Internet Explorer cannot display the webpage </p>
<p>Diagnose Connection Problems </p>
http://stackoverflow.com/questions/1397461/how-to-set-file-programmatically-using-paperclip2How to set file programmatically using PaperclipJaryl2009-09-09T03:59:58Z2009-09-09T04:31:45Z
<p>I have rake task to seed the application with random data using the faker gem. However, we also have images (like logos) that we want uploaded in this rake task.</p>
<p>We already have Paperclip set up, but don't have a way to upload them programmatically in a rake task. Any ideas?</p>
http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery1How to extract the entire path when a user uploads a file using jquerykartikkowligi2009-03-23T06:04:13Z2009-09-08T08:48:55Z
<p>Hi All,</p>
<p>I am trying to extract the entire path of the file that a user uploads on the browser and this i need to do using javascript or jquery.</p>
<p>If i give <code>($("#userfile").val());</code> i am able to extract only the file name and not the entire path.</p>
<p>Could someone please help me with this?</p>