Список возвращаемых значений строки
Я пытаюсь получить результат списка ImageDescr, видимый на всей странице.
например: я нажимаю кнопку и считываю индекс (n) списка ImageDescr, чтобы отобразить значение.
Что я уже пробовал:
<pre>protected void Page_Load(object sender, EventArgs e) { .... ImageDescription ImageDescr = new ImageDescription(); //ImageDescr is declared public in the class ImageDescription //after execute not see the element ImageDescr = null // }
Класс для полного списка , чтение строки из каталога
public class ImageDescription { private string virtualPath; private string physicalPath; public List<string> ImageDescr { get; set; } public ImageDescription() { // from other class PathImages pImg = new PathImages(); virtualPath = pImg.path1; physicalPath = pImg.path2; List<string> ImageDescr = new List<string>(); try { var imagesFolder = new DirectoryInfo(physicalPath); foreach (var item in imagesFolder.EnumerateFiles()) { if (item is FileInfo) { //add virtual path of the image to the images list ImageDescr.Add(string.Format("{0}/{1}", virtualPath, item.Name)); } } //the List ImageDescr is is correctly filled } catch (Exception ex) { //log exception //Logger.Log(ex.Message); } } }