如何从SQL Server数据库中检索文件路径并在图像控件中显示图像

时间:2016-11-15 20:05:06

标签: c# asp.net sql-server

我的ASP.NET C#项目中有一个Images文件夹。

我将此文件夹的文件路径存储在SQL Server数据库的Images表中。

我想在图像控件中显示图像,此图像应根据我在下拉控件中选择的内容而改变。

我已经能够使用图像名称填充DropDown,但我不知道如何选择图像,因为它们包含在上述文件夹中。

1 个答案:

答案 0 :(得分:0)

首先,您需要通过

找到您的根目录
  string root = Server.MapPath("~");

将它与您的文件夹一样附加

 string path = root + "assets\\images\\products\\";

然后用你的文件名连接它。

string FileName = path+dd.SelectedItem;

并更改ImageControl

使用dropdownselectedindexchanged事件并设置

IMGCTRL.ImageURL=FileName;