using System.Collections; namespace Common { public class FileHelper { public string GetUploadfiles(Hashtable hash) { string temp = string.Empty; foreach (string key in hash.Keys) { temp += "" + key + "
"; } return temp; } } }