Reputation: 680
InformationTable
Father's name
Mother's name
Id
Email
When i am retrieving these value from my sql server database table InformationTable in my asp.net mvc 3 application i found these item like Father' ;s Name
How do i do it?
Thanks in advance
Upvotes: 2
Views: 170
Reputation: 574
Use it for mvc in asp
@Html.Raw(HttpUtility.HtmlDecode(**Value**))
Upvotes: 3