Questions tagged [neatupload]

The NeatUpload ™ ASP.NET component allows developers to stream uploaded files to storage (filesystem or database) and allows users to monitor upload progress. It is open source and works under Mono's XSP/mod_mono as well as Microsoft's ASP.NET implementation.

NeatUpload is a full-featured asp.net file-upload control.

It features several custom controls, including:

  • MultiFile allows all users to select multiple files to upload and allows Flash 8+ users to select multiple files from a single file selection dialog.
  • ProgressBar displays the upload progress either inline or in a popup.
  • UnloadConfirmer prevents users from accidentally interrupting an upload by leaving the page.

Features

  • Works in web gardens and web farms.
  • Works under medium trust environments when installed in the GAC.
  • Works under Mono's XSP/mod_mono and Microsoft's ASP.NET 1.1 or higher.
  • Easy to install and use. Add the UploadHttpModule to the section of your Web.config and drag-and-drop the controls using the Visual Studios Web Forms Designer.
  • ProgressBar control can display processing progress in addition to upload progress.
  • ProgressBar control uses AJAX-style refreshless updates on modern browsers when JavaScript is available, but also allows users without JavaScript to see upload progress.
  • Allows customization through styles, custom progress display pages, UploadStorageProviders, and UploadStateStoreProviders, and provides an API for creating your own file upload and progress controls.
  • Falls back to using ASP.NET's HttpPostedFile if the NeatUpload UploadHttpModule is not present. This makes it easy to remove the HttpModule if for some reason it causes problems.
  • Streams uploads directly to storage. This conserves server memory, allows larger uploads, and helps prevent Denial of Service attacks.
  • Removes uploaded files when an error occurs. This helps prevent disk space leakage.
  • Licensed under the Lesser General Public License (LGPL), a business-friendly open source license.
13 questions
20
votes
4 answers

Large File uploading to asp.net MVC

I need a way to upload large files (600 mb to 4 gb) in an asp.net mvc website. Currently I am using swfupload; it works well enough, but it is a huge hit on the webserver because it sends it in one big upload, plus I have to set it in the…
Solmead
  • 4,158
  • 2
  • 26
  • 30
5
votes
6 answers

ASP.NET control with MVC's Razor engine

I'm using ASP.NET MVC 3 with the Razor template engine for my website. I currently allow files uploads like this:
Hank
  • 8,289
  • 12
  • 47
  • 57
3
votes
1 answer

How to Install NeatUpload?

Salvete! Whilst searching for a quality, free asp.net/ajax upload control, I found NeatUpload. I cannot find an online demo for it, but the download package does come with a demo. I need some help installing it on my server (Windows Server…
bgmCoder
  • 6,205
  • 8
  • 58
  • 105
1
vote
1 answer

neatupload runtime error "cant detect few class files "

I was getting this error Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and…
user840491
  • 19
  • 4
1
vote
2 answers

FTP file upload without holding up user journey more than the initial upload

Was wondering the best way to do the following: I am uploading a file to my server, but do not want to keep it on my server. The file is a video file and uploaded by users who want to post their video on the site for their friends to watch. I am…
jimplode
  • 3,474
  • 3
  • 24
  • 42
1
vote
1 answer

Null Reference Exception when using NeatUpload

When we run this line: Brettle.Web.NeatUpload.ProgressInfo progress = GreyBoxProgressBar1.ProcessingProgress = new Brettle.Web.NeatUpload.ProgressInfo(1, ""); We get this exception: Timestamp: 22.10.2010 12:27:00 Message: …
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
0
votes
2 answers

MVC Brettle NeatUpload

Has anyone used NeatUpload for uploading a file with MVC2 or 3? Or are there better alternatives? If NeatUpload is good in combination with MVC can someone post an example? Or if there's a better option can someone tell me about it?
Jeroen
  • 4,023
  • 2
  • 24
  • 40
0
votes
1 answer

Paste file path into NeatUpload FileInput control

Using the NeatUpload file-upload control Is there a way I can paste a file path (instead of browsing) into an InputFile control? Say I have the path on the clipboard and javascript sets focus to the control, and the user manually pastes the…
bgmCoder
  • 6,205
  • 8
  • 58
  • 105
0
votes
1 answer

Network error (tcp_error) when uploading file using NeatUpload asp.net control

I get the error below when trying to upload files using NeatUpload asp.net control. Can anyone help me please?
user826876
  • 71
  • 1
  • 6
0
votes
1 answer

getting neat upload demo progress bar working

I would like to get this control called NeatUpload from codeplex working on my web app. I have downloaded the latest binary and the source code. And I have configured web.config And I have copy pasted the code from the demo page file and code behind…
rlee923
  • 758
  • 3
  • 14
  • 28
0
votes
1 answer

How to Set File-Location for Files Uploaded using NeatUpload

Salvete! When we set up the asp.net file-uploading control called "NeatUpload", it saves its files to a temporary location, either "YOUR_APP_ROOT /app_data/NeatUpload_Temp/", if the directory is writable, or to the system's temp folder. However,…
bgmCoder
  • 6,205
  • 8
  • 58
  • 105
0
votes
2 answers

How to Overcome this NeatUpload Object Reference Error?

Having installed NeatUpload (http://neatupload.codeplex.com/), and put the demo onto my server (Windows Server 2008 and IIS7), when I select an object in the combobox for the "Progress Bar Location", and change it to "Inline", I get an unhandled…
bgmCoder
  • 6,205
  • 8
  • 58
  • 105
-2
votes
2 answers

How to close the dialog itself from the code behind?

I create a dialog with in .aspx. This dialog is to update something and show the progress and I want it close automatically when the update is done. So can I close the dialog from the c# code without clicking the "Ok" or "Cancel" button when…