我在网格视图中有图像按钮控制我的客户需要在另一个页面中输入文件夹的路径我将此路径存储在数据库中我需要因为外部硬件中的客户存储图像无法将图像从硬盘传输到网站图像,因为它有一个巨大的尺寸
我的图像表包含用户显示网格视图时的图像名称我从数据库连接图像名称和数据库中的路径也是如何做到的
<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>
答案 0 :(得分:2)
你需要写下你的功能
public string GetImage(string name)
{
string path = Path.Combine(Server.MapPath(("~/Admin/Images/" , name));
return path;
}
或
你也可以这样做
void GrdVw_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
{
Image rowImage = (Image) e.Row.FindControl("currentDocFile");
rowImage.ImageUrl = whatever;
}
}
答案 1 :(得分:0)
我建议将图像名称作为参数传递给GetImagePath 试试这个:
public string GetImagePath(string imageName)
{
return VirtualPathUtility.ToAbsolute("~/images/" + imageName);
}
VirtualPathUtility.ToAbsolute(string)将虚拟路径转换为应用程序绝对路径。 所以你会得到像“/images/yourimage.jpg”这样的东西。