img 标签母版页中的相对路径
我在母版页中有一个标签。 我在许多文件夹中使用这个母版页。因此每个文件夹的标签的 src 路径应该不同。 这是我的代码:
<img src="images/1.gif" />
我有一个名为“images”的文件夹和一个名为“Users”的文件夹。 母版页位于根目录中,但我在“用户”文件夹中使用它。
如何为 src 设置动态地址?
I have a tag in a master page.
I use this master page in many folders. So the src path of the tag should be different for each folder.
Here is my code :
<img src="images/1.gif" />
and I have a folder named "images" and a folder named "Users".
Master Page is in the root, but I use it in Users folder.
How can I set a dynamic address for src?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 asp:Image 标记。您需要添加 runat="server" 才能使用 ~ 语法来解析您的 URL。
The easiest way would be to use an asp:Image tag. You need to add runat="server" in order to use ~ syntax to resolve your URLs.
只需使用
。这是 记录在此处。
Just use
<img runat="server" src="~/images/1.gif" />
. This is documented here.