|
|
|
|
|
Total Hits: 42 | Today: 0
|
Author: Bean Software
|
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....
|
|
|
|
Total Hits: 92 | Today: 0
|
Author: Adrian Bacaianu.
|
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...
|
|
|
|
Total Hits: 57 | Today: 0
|
Author: Soyuj Kumar Sahoo
|
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....
|
|
|
|
Total Hits: 87 | Today: 0
|
Author: Nick Polyak
|
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....
|
|
|
|
Total Hits: 48 | Today: 0
|
Author: Faisal Khan.
|
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 ...
|
|
|
|
Total Hits: 53 | Today: 0
|
Author: saravanan gajendran
|
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....
|
|
|
|
Total Hits: 123 | Today: 0
|
Author: Faisal Khan.
|
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....
|
|
|
|
Total Hits: 125 | Today: 0
|
Author: Mike Amundsen
|
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...
|
|
|
|
Total Hits: 8139 | Today: 51
|
Author: Jeff
|
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....
|
|
|
|
Total Hits: 2049 | Today: 0
|
Author: Faisal Khan
|
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....
|
|
|
|
Total Hits: 2671 | Today: 0
|
|
Rating:
|
|

This is a super simple example of how to use file upload with ASP+:
...
|
|
|
|
Total Hits: 4515 | Today: 0
|
Author: Damian Manifold
|
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....
|
|
|
|
Total Hits: 4359 | Today: 0
|
Author: Budi Kurniawan
|
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....
|
|
|
|
Total Hits: 32 | Today: 0
|
Author: benoityip
|
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....
|
|
|
|
Total Hits: 13 | Today: 0
|
Author: Faisal Khan.
|
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'....
|
|
|
|
Total Hits: 84 | Today: 0
|
Author: Nilesh Thakkar
|
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 ...
|
|
|
|
Total Hits: 24 | Today: 0
|
Author: Michael Vanhoutte
|
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....
|
|
|
|
Total Hits: 93 | Today: 0
|
Author: Sriram Vaideeswaran
|
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....
|
|
|
|
Total Hits: 73 | Today: 0
|
Author: Raahul Kumar Saxena
|
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....
|
|
|
|
Total Hits: 54 | Today: 0
|
Author: Scud
|
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....
|
|
|
|
|
|