ana sayfa > MVC > HttpUtility – Encode ve Decode

HttpUtility – Encode ve Decode

Çarşamba, 18 May 2016 yorum ekle yorumlara git
        public ActionResult Index()
        {
            string isim = "<p><b>Yakup KALEBAŞI</b></p>";
            string htmlEncode = HttpUtility.HtmlEncode(isim);
            string htmlDecode = HttpUtility.HtmlDecode(htmlEncode);
            ViewBag.HtmlBaslik = htmlEncode;
            ViewBag.HtmlBaslik2 = htmlDecode;

            return View();
        }

 

<div>
    Encode : @ViewBag.HtmlBaslik
    <br/>
    Decode : @ViewBag.HtmlBaslik2
    <br/>
    <br/>
    Encode Html.Raw : @Html.Raw(ViewBag.HtmlBaslik)
    <br/>
    <br/>
    Decode Html.Raw : @Html.Raw(ViewBag.HtmlBaslik2)
    <br/>
    Decode Html.Raw : @MvcHtmlString.Create(ViewBag.HtmlBaslik2)
</div>
Index
Encode : &lt;p&gt;&lt;b&gt;Yakup KALEBAŞI&lt;/b&gt;&lt;/p&gt; 
Decode : <p><b>Yakup KALEBAŞI</b></p> 

Encode Html.Raw : <p><b>Yakup KALEBAŞI</b></p> 

Decode Html.Raw :
Yakup KALEBAŞI


Decode Html.Raw :
Yakup KALEBAŞI

 

Categories: MVC Tags:
  1. şimdilik yorum yok.
  1. şimdilik geri bağlantı yok
yorum yapabilmek için giriş yapmalısınız