Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: Ajax Uploader in Database
Re: Ajax Uploader in Database
11-19-2008, 9:55 AM
cutechat
Joined on 07-22-2004
Posts 2,332
Re: Ajax Uploader in Database
Reply
Quote
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