URL by Viewbag

Asked

Viewed 144 times

1

I wanted to run a URL through Viewbag, but I couldn’t. I wanted to do it:

ViewBag.Quantidade = "Você Não tem quantidades suficientes, para continuar você deve comprar um Pacote";

ai in case the text "buy a package" was a link.

1 answer

2


With Html.Raw, that in the translation says that the string to interpret as HTML markup instead of encoded HTML. (translating: HtmlHelper.Raw Method (String)).

Controller:

ViewBag.Quantidade = 
    string
     .Format("Você Não tem quantidades suficientes, para continuar você deve {0}",
             "<a href=\"/home/usuario\">comprar um Pacote</a>");

View:

@Html.Raw(ViewBag.Quantidade)
  • 1

    Jewel! worked perfectly. Thanks @Virgilio

Browser other questions tagged

You are not signed in. Login or sign up in order to post.