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
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.
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)
Browser other questions tagged c# asp.net-mvc-5
You are not signed in. Login or sign up in order to post.
Jewel! worked perfectly. Thanks @Virgilio
– Fabio Souza