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.
我正在尝试编写简单的 MVC Razor 应用程序,它将图像从文件加载到视图模型中并显示它。我找不到简单的解决方案。
为什么要将其加载到视图模型中?只需链接到它。
如果使用剃刀 1
<img src="@Html.Content("~/Content/images/myimage.jpg")" />
如果使用 Razor 2
<img src="~/images/myimage.jpg" />
如果这不是你想要的,那么你需要更清楚你到底想要做什么。