Skip to content

Instantly share code, notes, and snippets.

@furi2
Created November 21, 2011 05:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furi2/1381765 to your computer and use it in GitHub Desktop.
Save furi2/1381765 to your computer and use it in GitHub Desktop.
Upload test code ASP.NET (Upload.aspx)
using System;
using System.Web;
using System.Web.UI;
using System.IO;
public partial class Upload : System.Web.UI.Page
{
protected void Page_Load( object sender, EventArgs e )
{
string root_path = Server.MapPath("~/");
string FILENAME = root_path + "test.jpg";
if( File.Exists( FILENAME ) )
{
File.Delete( FILENAME );
}
HttpPostedFile pf = Request.Files[0];
using( FileStream fs = File.Create( FILENAME ) )
using( BinaryReader br = new BinaryReader( pf.InputStream ) )
using( BinaryWriter bw = new BinaryWriter( fs ) )
{
int BUFFER_SIZE = 4000;
int position = 0;
int size_read = -1;
byte[] buffer = new byte[BUFFER_SIZE];
// Read all
while( position <= pf.InputStream.Length && size_read != 0 )
{
size_read = br.Read( buffer, 0, BUFFER_SIZE );
bw.Write( buffer, 0, size_read );
position += size_read;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment