Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, July 20, 2008

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 > File Upload
Search:
What's New - What's Hot


File Upload & Compression in ASP.Net        
Total Hits: 42  |  Today: 0 Author: Bean Software       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article I am going to look at how to upload a file to the web server and compress it using the compression methods provided in .Net. I will use the open source compression method to compress to a .gz file. The method is available in System.IO.Compression....

ISAPI versus ASP file uploads in web applications        
Total Hits: 92  |  Today: 0 Author: Adrian Bacaianu.       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes two ways of uploading images and files to your web server, and the advantages and disadvantages of both. My contribution is based on the comparison between the different methods. I didn't invent any Microsoft upload technique.
This article is based on an ASP technique which I got from my colleague Doru Paraschiv and on a very good article from MSDN. My special thanks to Panos Kougiouris, for his help in revealing the ISAPI binary streaming techniques. Check out Creating...

Adding Filter Action to FileUpload Control of ASP.NET 2.0        
Total Hits: 57  |  Today: 0 Author: Soyuj Kumar Sahoo       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, Soyuj explains the logic to implement the ASP.NET 2.0 FileUpload Control for adding the ability to filter files. After a brief introduction, he discusses both the client and server side approaches with the help of source code. At the end of the article Soyuj also provides a few useful references to learn more about the discussed topic....

MultiSelect Drag and Drop in WPF        
Total Hits: 87  |  Today: 0 Author: Nick Polyak       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is a variation on the previous theme: Drag and Drop (see Very simple WPF Drag and Drop Sample without Win32 calls). Only here drag and drop of multiple items selected within WPF ListView or ListBox is discussed....

Uploading Files into an Access Database using plain ASP        
Total Hits: 48  |  Today: 0 Author: Faisal Khan.       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this tutorial you are going to learn everything in detail step by step you'll ever want to know about inserting binary data ( images, zip files etc ) into database. This is actually first of the three articles I am going to write on manipulating binary data in the database. After this article you'll be able to upload binary data into database, then in the second article (Displaying Images from an Access Database using plain ASP) you'll learn to get this data out of database and display it as ...

Programmatically uploading multiple files to Custom sharepoint list in 2007        
Total Hits: 53  |  Today: 0 Author: saravanan gajendran       Rating:  
Read Reviews | Write Review |   Your Rating: 

A custom SharePoint list can be configured to collect any type of data and SharePoint automatically generates the forms for adding new items, editing items and viewing items.
Team Web site comes with a built-in List Calendar, Task, which is listed on the Quick Launch bar. A new custom list has to be created for storing the files....

File Uploading to Server Hard Disk using ASP.NET        
Total Hits: 123  |  Today: 0 Author: Faisal Khan.       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article we will learn how to upload one or more files from the client browser to the server hard disk using plain ASP.NET. We will not be creating or making use of any commercial or home-made components, instead we will learn to make use of standard ASP.NET HTML controls which are part of ASP.NET 1.0....

Creating a File-Upload User Control with ASP.NET        
Total Hits: 125  |  Today: 0 Author: Mike Amundsen       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article explains how to create a file-upload user control in ASP.NET. To do this, we'll build multipart MIME upload forms using the InputFile HTML Server Control and learn how to take advantage of the file-upload services built into the HTTP runtime for ASP.NET. The article will show how to save the uploaded file to disk without granting anonymous users file-write access to folders on your Web server. Finally, you'll wrap all this in a new ASP.NET user control. This will allow you to add fi...

Uploading Files in ASP.Net Using C# and Saving to the Server        
Total Hits: 8139  |  Today: 51 Author: Jeff       Rating:  
Read Reviews | Write Review |   Your Rating: 

This sample will show you how to create an ASP.Net page to allow a user to upload a file, determine the type of file being uploaded, and save that file to the web server....

Uploading, Determining Size, Width and Height and Resizing Image Files with ASP.NET        
Total Hits: 2049  |  Today: 0 Author: 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....

ASP+ upload syntax        
Total Hits: 2671  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is a super simple example of how to use file upload with ASP+:

...

File uploading with .NET        
Total Hits: 4515  |  Today: 0 Author: 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....

ASP.NET File Uploading        
Total Hits: 4359  |  Today: 0 Author: 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....

Server Side File Upload Progress Bar        
Total Hits: 32  |  Today: 0 Author: benoityip       Rating:  
Read Reviews | Write Review |   Your Rating: 

There are many ASP.NET file upload progress bars flowing around, but I have come across many of them that don't work. This code is referenced by the article in http://krystalware.com/blog/archive/2004/10/11/303.aspx. It works. However, that one provides more functions then what I want, so I spent time to go through his code and extract some important bits of his code and build this file upload progress bar....

Uploading Files to the Server Hard Disk using plain ASP        
Total Hits: 13  |  Today: 0 Author: Faisal Khan.       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is number three in a series of articles I wrote about uploading and displaying binary data with ASP. The first article was about Uploading binary data to the database, second was on Displaying binary data from the database and the third one ( this one ) is going to be on 'Uploading files to the server hard disk using pure ASP'....

File Upload Progress bar without Using AJAX        
Total Hits: 84  |  Today: 0 Author: Nilesh Thakkar       Rating:  
Read Reviews | Write Review |   Your Rating: 

In one of my project there is a requirement in which I have to show a progress bar during the file upload. Its easily possible using Update Panel if we are using AJAX. But my application is not AJAX enabled. So I have to create a simple JavaScript progress bar. I have searched on internet and found some helpful java scripts. I collected the needed code and started it. And finally I made a good simple and easy to implement Progress bar. Here I have used a simple Form which can be shown when your ...

Using Memory Mapped Files in ASP.NET using VB.NET        
Total Hits: 24  |  Today: 0 Author: Michael Vanhoutte       Rating:  
Read Reviews | Write Review |   Your Rating: 

MemoryMappedCache is a small project can be used to host a proactive loaded cache using a Windows Service. This cache uses Memory Mapped Files internally. Other applications on the same computer can then also use MemoryMappedCache to access information stored in this cache. This is done much quicker than using .NET Remoting. A significant amount of time was spent to ensure that this cache can be accessed from within ASP.NET if the cache is hosted by a Windows Service....

File Uploading in ASP.NET Using C#        
Total Hits: 93  |  Today: 0 Author: Sriram Vaideeswaran       Rating:  
Read Reviews | Write Review |   Your Rating: 

File uploading has always been a tedious task for the web developer community. Either we have to use a third party component or write several lines of code. With the advent of ASP.NET file uploading has become a lot easier, importantly without the need for third party components. All we have to do is to use the ASP.NET HTML File control and write a few lines of C# code....

How to: Upload a File in ASP.NET        
Total Hits: 73  |  Today: 0 Author: Raahul Kumar Saxena       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, I am going to show how we can upload a file. Here I am uploading a .txt file and saving it in a predefined location. Let see this by a simple programme. Here I am using an input tag highlighted with yellow colour for browsing the uploaded file....

Simple Upload in ASP.NET        
Total Hits: 54  |  Today: 0 Author: Scud       Rating:  
Read Reviews | Write Review |   Your Rating: 

You can use this script to upload files and images to your website. Script can be used within an application to manage a website manager....


1  2  3  4  5  6  7  Next >> 

DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net