Posted on: 5/10/2014 1:05:30 PM | Views : 269

Hello all,
using the javascript serializer , i serialize the image and stored in json file like
public string SerializeObj() { Person p = new Person{ Name = "raja" , Id = 1 , Photo = system.drawing.image.fromfile('path') }; string m = new JavaScriptSerializer().Serialize(p); new streamwriter().writeline(m); } Then  serialize object is stored in  person.json files.
I want display the data which is store in person.json. by using jquery i display all the data except image...................................
$.get("./person.json", function (data) { something..... } I Don't Know .. how to display the image which is serialzed in the json file using jquery...............

Go to the complete details ...