Hi,
I am using the upload control and the client side events are working fine bu when i try to save the details form server side, the selected files are uploading the selected files. Please find below my sample code.
foreach (UploadedFile file in RadUpload1.UploadedFiles)
{
byte[] bytes = new byte[file.InputStream.Length];
file.InputStream.Read(bytes, 0, file.ContentLength);
dr["Resume1"] = bytes;
}
I have included enctype="multipart/form-data" in my form tag eventhough it is not working.
Could anyone please help me since this is little bit urgent.
Many thanks in advance.
Best Regards,
Shankar. M