Still struggling very much with how to accomplish saving div+contents/layout to a database and then retrieveing that data to post back.
Can any one possibly help? I have it in my previous questions including my website link to show what im trying to achieve.
Thanks to any one who can help?
It seems like you are currently updating the page using jQuery/javascript once a user types something.
Instead, post the user text to the server using
$.post()or$.ajax(), write an aspx page on the server that handles those requests, and add the content (unformatted preferably, no html tags) to the DB.If a client requests the updated page, send the page frame as is but use i.e. a repeater or another looping construct to add in the content from the DB.