Joy Acharya
Joy Acharya

Reputation: 680

How to get apostrophe from database?

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&#39 ;s Name

How do i do it?
Thanks in advance

Upvotes: 2

Views: 170

Answers (1)

Gin Uchiha
Gin Uchiha

Reputation: 574

Use it for mvc in asp

@Html.Raw(HttpUtility.HtmlDecode(**Value**))

Upvotes: 3

Related Questions