Public Function PutString(By Val txtString As String) As String
'write in on server (in text file or database or xml)
End Function
Public Function GetString() As String
'get it from file or database
Return(your string from file or database)
End Function
Dim ws As New YOURSERVER.ServiceName()
me.myTextField.Text = ws.GetString()