I'm making simple article adding. I have a CKEditor and I take from this data and encode it with encodeURI in javascript and send it to ViewController then I put it into table in database. Then I want to show the article, so I <% HTML.RenderAction("MyAction); %>" and in this action I decode the url from database using HttpUtility.UrlDecode(content). But it shows for example HTML tags instead of being formatted. It is shown as a text. When in Chrome I click right and show HTML then there are words like :
& lt; p > ; Some text here< ; / p & g t;
There is no space in between characters I added them because it shows
<p></p>
What can I do to make it working properly?