I have SQL table with JSON Content. I have ID and JSON Content in SQL Table. I want the JSON content formatted well in gridview.
SQL table
Id JSONContent
--------------------------------------------------
1 {"ID":"201456", "Address" : "Brooklyn, NY"}
2 {"ID":"201457", "Address" : "Queens, NY"}
Desired Output (In Grid View)
Id JSONContent
----------------------------------
1 {
"ID":"201456",
"Address" : "Brooklyn, NY"
}
2 . {
"ID":"201457",
"Address" : "Queens, NY"
}