I have this
for (int i = 0; i < RadUpload1.UploadedFiles.Count; i++)
{
TextBox1.Text = TextBox1.Text +
"\n"+RadUpload1.UploadedFiles[i].FileName;
}
This FileName method returns the file name ONLY. How can i get the full source path?
For example if i upload from : c:/upload/test.jpg
I want to print out the whole "c:/upload/test.jpg" , not just "test.jpg"
Thank you!