如何在布局页面上放置图像

本文关键字:图像 布局 | 更新日期: 2023-09-27 18:19:37

我有一个使用html、css、c#和剃刀语法的小项目。

我有布局页面(在剪切文件夹上),我使用renderbody()。

在布局页面上,我有一个我想出现在所有页面上的图像("intro.png")(因为我把图像放在了布局页面上),但当我转到我的小网站上的其他页面时,页面不会出现,它只出现在第一页。这是我的布局页面的一部分:

    <!-- Introduction --> 
    <header>
        <h2>head?</h2>
    </header>
    <p>some text.</p>
    <img src="Content/images/intro.png">
</section>
<div id="content">
    @RenderBody()
    <aside>
        <section>
            <header>
                <h3>Categories</h3>
            </header>
        </section>
        <section>
            <header>
                <h3>Archives</h3>
            </header>
            <ul>
                <li><a href="#">December 2008</a></li>
                <li><a href="#">January 2009</a></li>
                <li><a href="#">February 2009</a></li>
                <li><a href="#">March 2009</a></li>
            </ul>
        </section>
    </aside>
</div>

如何在布局页面上放置图像

而不是以这种方式提供图像链接:

 <img src="Content/images/intro.png">

使用此:

 <img src=@Url.Content("~/Content/images/intro.png")>

我认为图像路径有问题。。我认为以上的答案将解决那个问题。。