here's my scenario. XML is stored in SQL DB. I need to allow user to edit different parts of that XML (no insertion, just updates), get notified if something changed (so that I could save the last date file or node was edited) and then save updated XML to DB.
What is the best & quickest approach in this scenario? I was hoping to use data binding expression with XmlDataSource. BUT, it supports only read-only binding (it seems).
Are there any other alternative solutions built into ASP.NET I could use that would allow databinding (with specifying xpath for each control)? or do I need to roll out my own solution?
if roll out my own solution, what's the best way to do it?