html - MVC embed links on page from database -
i'm trying make simple blog page. , main problem right want able embed example youtube video. when post loads database link displayed instead of being embedded.
below partialview displays 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 embedded link held. there way solve this?
thanks beforehand.
you can html helper:
@html.raw(item.text)
Comments
Post a Comment