Is it possible to define an HTML tag in a C # string? [closed]

0

I have the following string written in C #:

string Descricao = "Você ficou muito tempo inativo, e por isso sua sessão caiu. Retorne para a página inicial para continuar."

I would like to put the% wrapper of the string inside an HTML tag, something like this:

Descricao = "Você ficou muito tempo inativo, e por isso sua <span style="font-weight: bold">sessão caiu</span>. Retorne para a página inicial para continuar."

Is it possible? I'm trying to conform to the above code, however I'm getting it:

    
asked by anonymous 31.10.2017 / 15:30

1 answer

1

You need to use the helper Html.Raw()

@Html.Raw(mensagemErro.Descricao)

See it working on .NET Fiddle.

    
31.10.2017 / 15:54