gpt4 book ai didi

c# - 如何在 asp.net Visual Studio 中以 Web 表单显示图像?

转载 作者:太空宇宙 更新时间:2023-11-03 14:54:14 25 4
gpt4 key购买 nike

我在我的根项目文件夹中创建了一个图像文件夹

<asp:Image ID="Image1" runat="server" ImageUrl="~/images/" />

我在这里链接我的图片:

        if (dropDownList.SelectedItem.Value == "Picture 1")
{
Image1.ImageUrl = "~/images/picture1.jpg"
}

当我访问该网页时,我会看到一个带有 x 的小 img 框,而不是我的图像。

最佳答案

<asp:Image ID="Image1" runat="server" ImageUrl="~/images/" />

将 url 设置为目录(文件夹),而不是图像。这就是为什么您得到的是小图像框而不是图像。

如果您希望在页面加载时显示图片,请将其设置为有效图片:

<asp:Image ID="Image1" runat="server" ImageUrl="~/images/picture1.jpg" />

关于c# - 如何在 asp.net Visual Studio 中以 Web 表单显示图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50457345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com