mvc html.encode,HTML encode decode c# MVC4

问题

I am in a process of upgrading a c# MVC2 project into c# MVC4.

Here is the scenario in MVC2

Input string(from database)

Model.text="

Hi
hello!
you there

"

Output (rendered in the view)

rendered using

Hi

hello!

you there

Here is the scenario in MVC4

Input string(from database)

Model.text="

Hi
hello!
you there

"

Output (rendered in the view)

rendered using

@Model.text

Hi
hello!
you there

I tried

@HttpUtility.HtmlDecode(Model.text)

@HttpUtility.HtmlEncode(Model.text)

Nothing helps...

I had a similar problem in MVC4 asked here (the ajax result is rendered with html tags not the actual html)

Is some of my settings troubling me??? or is that something to do with HTML 5 or am I missing anything in using MVC4.

Please help!!

回答1:

This should do the trick:

@Html.Raw(Model.text)

回答2:

If you don't want your text get encoded, that text should be of type IHtmlString. String texts are encoded by default.

In your case,

Model.text = MvcHtmlString.Create("

Hi
hello!
you there

");

would do the trick as well.

回答3:

In controller side

viewbag.msg="hello";

in the html.cs razor view

@Html.Raw(viewbag.msg)

来源:https://stackoverflow.com/questions/9050145/html-encode-decode-c-sharp-mvc4

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值