bcm 5 Junior Poster in Training

I want to create a project in VB.NET2005 in which I when I insert values in textbox it should appear in the related html string and next time when I run the project it should display the same values.
I am able to retrive the values in one textbox but I am not able to display it in different textboxes. I have used folling code to show it in one textbox:
CODE:-
Me.TextBox1.Text = ""

Dim rd As XmlReader = XmlReader.Create("C:\Documents and Settings\bipin.more\My Documents\Visual Studio 2005\Projects\XML1\XML1\app.config")

While rd.Read

If rd.NodeType = XmlNodeType.Text Then

Me.TextBox1.Text &= rd.ReadString & ControlChars.NewLine

End If

End While

rd.Close()

Please help soon!!!!!!!