Ok, here's the situation.
I am quite inexperienced with ASP.NET, so please be patient.
So I have this mainpage, which is basically a simple HTML table which content gets generated based on an XML file.
I have the informations: Author, Comment and Date.
Now I want to allow users to modify their comment. So at the right of every line, there is a link which opens the EDIT webform.
When the webform is opened, I put the informations in the respectiv textboxes i.e. the Comment goes into txtComment.
Now, when I save the new information (done using an XML object which then saves itself to a file), the comment is not changed. When I leave the txtComment.text property empty when openeing the form, the comment is updated fine.
Now after debugging, I noticed that when the txtComment.text property is set to a value in the Page_Load event, changing it's content in the Web Form won't actually change it's "text" property.
Anyone knows what this could possibly be?
I hope I made myself clear
I am quite inexperienced with ASP.NET, so please be patient.
So I have this mainpage, which is basically a simple HTML table which content gets generated based on an XML file.
I have the informations: Author, Comment and Date.
Now I want to allow users to modify their comment. So at the right of every line, there is a link which opens the EDIT webform.
When the webform is opened, I put the informations in the respectiv textboxes i.e. the Comment goes into txtComment.
Now, when I save the new information (done using an XML object which then saves itself to a file), the comment is not changed. When I leave the txtComment.text property empty when openeing the form, the comment is updated fine.
Now after debugging, I noticed that when the txtComment.text property is set to a value in the Page_Load event, changing it's content in the Web Form won't actually change it's "text" property.
Anyone knows what this could possibly be?
I hope I made myself clear