FileHelper.cs 395 B

1234567891011121314151617
  1. using System.Collections;
  2. namespace Common
  3. {
  4. public class FileHelper
  5. {
  6. public string GetUploadfiles(Hashtable hash)
  7. {
  8. string temp = string.Empty;
  9. foreach (string key in hash.Keys)
  10. {
  11. temp += "<input type=\"checkbox\" value=\"" + key + "\"/>" + key + "</br>";
  12. }
  13. return temp;
  14. }
  15. }
  16. }