Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do this with the Html helper:

@Html.Raw(item.Text)
share|improve this answer
Ah great! Thanks! – wardh Oct 13 '11 at 13:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.