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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -