我在网格视图中有图像按钮控件我的客户需要在另一个页面中输入文件夹路径我将此路径存储在我需要的数据库中因为客户将图像存储在外部硬盘中无法将图像从硬盘传输到网站图像因为它有巨大的尺寸
当用户显示网格视图时,我的图像表包含图像名称我将数据库中的图像名称和数据库中的路径连接起来我该怎么做
<asp:TemplateField HeaderText="photo">
<ItemTemplate >
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl='<%# GetImagePath()+Eval("ImageName") %>' Width="100px" Height="100px" Style="cursor: pointer" OnClientClick = "return LoadDiv(this.src);" />
</ItemTemplate>
</asp:TemplateField>