DataList 中的图像未更新
我在 datalist
中显示公司徽标以及一些字段。 一切正常,直到我用新的徽标(相同的文件名)覆盖徽标, 即使我手动转到文件系统并删除它所看到的内容,datalist
仍然显示旧的图像
! 在我上传
新的图像
之后(在我手动删除之前),我查看了文件夹,它是正确的,
我正在引用文件系统
像这样的文件夹和文件:
ImageUrl='<%# "~/icons/" + Eval("ImagePath") %>' Height="200px"
我是否遗漏了一些明显的东西?
谢谢
I'm showing company logos in a datalist
along with a few fields.
All works fine until I overwrite logo with a new one (same filename),datalist
still shows the old image
, even if I manually go to the filesystem
and delete what its looking at!
After I upload
the new image
(before I manually deleted)I looked in the folder and it is the correct one there
I'm referencing the filesystem
folder and file like so:
ImageUrl='<%# "~/icons/" + Eval("ImagePath") %>' Height="200px"
Am I missing something obvious?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试在更新图像后将新的
DataSource
重新绑定到DataList
对象?显然,我猜您可能忘记更新并重新绑定您的DataSource
。Have you tried to rebind your new
DataSource
to yourDataList
object after updating your images? Apparently, you may have forgotten to update and rebind yourDataSource
I guess.