Is there a way to save data in a report/text into db and retrieve data from db to a report/text? Here is an example: "I am a student. My name is Henry Lu" In this text/report, Henry is saved as first_name in a db and Lu is saved as last_name in a db. It is easy to make a report from db to a test/report because we can simple pull all data to generate the report. But what if a use changes last name 'Lu' to 'Luis' in the text/ report, how do I save this changed last_name into db when user hit a save button. Is there a feature in the .Net framework to do that? Is there a feature in the .Net framework let user to do that in a web application?
-Henry
