Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个母版页,简而言之,母版页上有两张图片(顶部是徽标,底部是 fb 链接)。
但是,当管理员登录时,我确实有一个用于 .aspx 页面的管理文件夹。
所有非管理员页面都需要访问这两张图片,src 为 image/logo.jpg 和 image/fb.jpg。然而,管理页面需要使用 /image/logo.jpg 和 /image/fb.jpg 的 src 访问图像。
是否可以根据文件夹实现两个单独的路径,而无需创建第二个母版页?
<img src="/images/yourimage.png" />
使用 Image Server 控件而不是 html img 标记或 ResolveUrl 方法来处理生成的 url:
<img src='<%= ResolveUrl("~/images/yourimage.png") %>' />