I want to save part of my html code into json as a file then recap back the html codes for editing. Any idea how can i do it?
You can use this following snippet to convert HTML into JSON string
var HtmlToJsonString = JSON.stringify($("#TextBoxesGroup").html());
You can stored this JSON string into database and edit time you decode it and put on UI page.