↧
Re: C# Save multiple file in on server and gather their paths in in one cell...
wahbahfor (int i = 0; i < hfc.Count; i++)This line here is creating a row for each uploaded file.
View ArticleC# Save multiple file in on server and gather their paths in in one cell ,...
here is a script to upload multiple file on server folder and store their path in database, however the path of the images are getting stored in multi Row.For example: i upload 3 images, image1.jpg,...
View ArticleRe: C# Save multiple file in on server and gather their paths in in one cell...
Hi wahbah,You could refer to the following code.DataRow dr = DT.NewRow(); string filelist = ""; for (int i = 0; i < hfc.Count; i++) { //... filelist += "upload" + hpf.FileName + "*"; //... }...
View Article