Re: Ajax Uploader in Database

  •  11-19-2008, 9:55 AM

    Re: Ajax Uploader in Database

    Hi,
     
    You can read the binary data by open the stream:
     
    void Uploader1_FileUploaded(object sender,UploaderEventArgs args)
    {
       using(Stream stream=args.OpenStream())
       {
          //read the stream into byte[], and then save to database
       }
    }
     
    Regards,
    Terry
     
     
View Complete Thread