asp net mvc 默认图像显示
如果用户没有图像,如何显示默认图像?现在,我显示如下:
<img alt="<%: Model.FullName %>" src="/Uploads/foto_<%: Model.StudentID %>.jpg"
style="height: 125px; width: 125px" />
在某些情况下,如果上传文件夹中没有这张照片,我将无法获得图像,因此我需要默认图像。
How can I display a default image if a user doesn't have an image? For now, I display like this:
<img alt="<%: Model.FullName %>" src="/Uploads/foto_<%: Model.StudentID %>.jpg"
style="height: 125px; width: 125px" />
And in some cases if I don't have this photo in Uploads folder I don't get an image, so I need a default image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 .aspx 页面中使用以下代码
在 .cs 页面中使用以下代码
Use the below code in your .aspx page
in your .cs page use the following
我会写一个 HTML 助手:
然后在你看来简单地:
I would write an HTML helper:
and then in your view simply: