I have a field in a SQL Server database table of datatype XML.
The proposed format is as follows:
<remarks>
<remark>
<author>Patrick Keane</author>
<date>18/12/2012 10:06</date>
<content>My content Here</content>
</remark>
<remark>
<author>Joe Blogs</author>
<date>19/12/2012 11:32</date>
<content>My content Here</content>
</remark>
......
......
</remarks>
Using ASP.NET (C#), I want to add a new entry to the field (which may or may not already have entries in it). I also want to be able to retrieve the last entry (for display on my .aspx page) and the full list of entries (for display on a .xml page).
I've been looking about for information/tutorials and most of what I find is exporting data and converting to XML. Can anybody point me to a relevant tutorial or provide some info for me? Ty