MVC 在页面上嵌入数据库中的链接
我正在尝试制作一个简单的类似博客的页面。我现在的主要问题是我希望能够嵌入 YouTube 视频等。当帖子从数据库加载时,会显示链接而不是嵌入链接。
下面是我的partialView,它显示我的帖子。
@foreach (var item in ViewBag.Posts)
{
<div class="posts">
<p>
<b>@item.Topic</b></p>
<p>
<@item.Text</p>
<p>
@item.PostDate - @item.Alias</p>
</div>
<hr />
}
item.Text 是嵌入链接所在的位置。有什么办法可以解决这个问题吗?
预先感谢。
I'm trying to make a simple blog like page. And my main problem right now is that I want to be able to embed for example a youtube video. When the post loads from the database the link is displayed instead of being embedded.
Below is my partialView which displays my posts.
@foreach (var item in ViewBag.Posts)
{
<div class="posts">
<p>
<b>@item.Topic</b></p>
<p>
<@item.Text</p>
<p>
@item.PostDate - @item.Alias</p>
</div>
<hr />
}
the item.Text is where the embedded link is held. Is there any way to solve this?
Thanks beforehand.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Html 助手来完成此操作:
You can do this with the Html helper: