Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > ASP.Net > File Management
Search:
What's New - What's Hot
Listings for Code behind Code behind (3)
Listings for Config Files Config Files (12)
More Categories for File Downloading File Downloading (1)
Listings for File Manipulation File Manipulation (36)
Listings for File Upload File Upload (158)
Listings for FileSystemWatcher FileSystemWatcher (10)
Listings for Hard Drive Directories Hard Drive Directories (10)
Listings for Read & Write file Read & Write file (29)


Uploading Files Using a Webform     
Total Hits: 280  |  Today: 0Author: aspalliance      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you require a quick simple upload function for you web based application you can accomplish this action by using the System.IO namespace along with the default namespaces that are added when you create a webform within Visual Studio.NET...

Upload files using ASP.NET - Part 1     
Total Hits: 213  |  Today: 0Author: Pari Moola      Rating:  
Read Reviews | Write Review |  Your Rating: 

File Upload has always been a tedious task in ASP. This is due to the encryption type of the form used to submit the file from the client’s browser. It was a complex task to receive such files on the server side using ASP. Data had to be retrieved as a safe byte array and decrypted before it could be used. Most of the people resorted to 3rd party DLL’s, a few wrote their own DLL’s and some even wrote purely ASP solutions to this problem using VBScript....

Upload files using ASP.NET - Part 2     
Total Hits: 231  |  Today: 0Author: Pari Moola      Rating:  
Read Reviews | Write Review |  Your Rating: 

In Part I, we learned how to upload a single file using ASP.NET. In this part, we are going to learn about how to upload multiple files....

Uploading, Determining Size, Width and Height and Resizing Image Files with ASP.NET     
Total Hits: 2181  |  Today: 0Author: Faisal Khan      Rating:  
Read Reviews | Write Review |  Your Rating: 

Comprehensive tutorial on uploading image files, determing size ( in bytes ), type ( bmp, jpg, gif ), width and height ( in pixels ) of these images, imposing restrictions to allow images of only certain size, width and height to get uploaded and to resize ( create thumbnails ) of these images....

Multiple file upload in ASP.NET     
Total Hits: 4110  |  Today: 0Author: Wim Hollebrandse      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article the author will show you how to upload multiple files with ASP.NET. Also, he will see how we can upload all the files specified in our HtmlInputFile controls in our form without having to reference them individually....

Allowing Users to Upload Multiple Files at Once     
Total Hits: 4423  |  Today: 0Author: Donny Mack      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server....

Upload Binary Files with WebService     
Total Hits: 2275  |  Today: 0Author: Manish B Mehta      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET samples which give a facility to upload a file, the quick and dirty code the author is going to explain here, uploads a binary file to a WebService. This is perhaps the most simply code he have ever written to accomplish a complicated task.
...

Uploads in ASP.NET     
Total Hits: 1003  |  Today: 0Author: Remas Wojciechowski      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you're an ASP programmer, you'll know what I mean when I say that enabling your applications to handle uploads isn't piece of cake in ASP. At least insofar as in the end of the day you have to buy a component if you want your scripts to run smoothly....

File Upload with ASP.NET     
Total Hits: 1935  |  Today: 0Author: Konstantin Vasserman      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article shows you how work with uploading of the files using ASP.NET and C#....

ASP.NET File Upload     
Total Hits: 1126  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This example illustrates with an example how to write simple file uploading form using ASP.NET. The example simply displays a HTML form in which user can select a file to upload. Once user clicks on Upload button the file is Uploaded to the server and its details like Size, Source and Destination File names are shown....

File uploading with .NET     
Total Hits: 4634  |  Today: 0Author: Damian Manifold      Rating:  
Read Reviews | Write Review |  Your Rating: 

On of the new additions in .NET is the ability to upload files without the need for additional components. The class HttpPostedFile deals with posted files. It has only a few members, but these cover anything you would want to do with an upload. Here is an example that hopefully demonstrates everything you need to know....

Uploading a File in ASP.NET     
Total Hits: 678  |  Today: 0Author: James Foster      Rating:  
Read Reviews | Write Review |  Your Rating: 

In regular ASP, you may have purchased ASPUpload or SA-FileUp to handle your file uploads. In the new .NET framework, support for file uploading is built in. This article shows you how simple it is to handle file uploading with ASP.NET....

How to Upload files in ASP .NET     
Total Hits: 3353  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

First of all, we need a HTML server control to allow the user to select the file. This is nothing but the same old input tag, with the type set to File, such as input type=file id=myFile runat=server. This will give you the textbox and a browse button. Once you have this, the user can select any file from their computer (or even from a network). Then, in the Server side, we need the following line to save the file to the Web Server.
...

File Uploading in ASP.Net Using C#     
Total Hits: 2405  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article guides you through the file uploading process. In classic ASP we would use the HTML file control for uploading files. In ASP.net we replace this with the ASP.NET HTML File control.The declaration of ASP.NET HTML file control is much like normal HTML file control except for the runat attribute set to server....

ASP.NET File Uploading     
Total Hits: 4507  |  Today: 0Author: Budi Kurniawan      Rating:  
Read Reviews | Write Review |  Your Rating: 

File upload and download are much simpler tasks in ASP.NET than in classic ASP, thanks to the extensive .NET Framework class library. While file upload in ASP.NET is as easy as retrieving an HTML form value, file download is still a bit tricky....

TripleASP.Net Upload Assembly     
Total Hits: 647  |  Today: 0Author: Scott Watermasysk      Rating:  
Read Reviews | Write Review |  Your Rating: 

First things first. While this assembly is functional, I am sure some one is going to come up with a much more feature rich commerical component. But for now, this should give you a good overview of uploading in ASP.Net (as well as a quick over view on using an abstract class, overloading a method, inheriting from a base class, and using the IEnumberable Interface)....

File Uploader using ASP+ and C#     
Total Hits: 1600  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

A free and fully customisable page to help you upload 'files' from your webpage to your server.
...

File Uploader     
Total Hits: 887  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

To upload files the 'System.Web.UI.HtmlControls' namespace has a class called 'HTMLInputFile' . With this class you can access the properties of the traditional input type="file" component.
HTMLInputFile class contains a property called 'PostedFile' which returns a instance of the class 'HttpPostedFile'. This class has various methods which help us to get various properties of the posted file. Also the 'HttpPostedFile' class has a method 'SaveAs()' which saves the posted file to your server. ...

File Uploader using ASP+ and C#     
Total Hits: 1086  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

A free and fully customisable page to help you upload 'files' from your webpage to your server....

ASP.NET File Upload Example     
Total Hits: 1427  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET provides an easy mechanism to upload files from a Web Browser to a Web Server. The class HtmlInputFile allows to handle programmatically the information submitted by the INPUT control of the type file, e.g., < input type"file" >. Remember that the Input control of type file is only available in Web Browsers that support HMTL 3.2 and later versions. This HTML version is supported by IE 3.02 and Netscape 3.0 and their later versions....



Disclaimer - Privacy
© 2002-2012 DevASP.net