Where do you store images for asp.net mvc projects and how do you reference them from site.master

前端 未结 5 433
春和景丽
春和景丽 2021-01-30 15:53

I have a new asp.net mvc project and i am trying to figure out the best place to store images and also how i would reference them from site.master (in cases where i have a heade

5条回答
  •  失恋的感觉
    2021-01-30 16:18

    <%=Html.Image("~/Content/Images/xxx.png")%>
    

    This resolves from wherever you are in the site hierarchy. Html.Image is a part of the the Microsoft.Web.Mvc futures assembly.

提交回复
热议问题