View Single Post
  #2 (permalink)  
Old Feb 19th, 2008, 22:20
magicben magicben is offline
Junior Member
Join Date: Feb 2008
Location: Paris
Age: 31
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Binding Textboxes

The best way to do tis is to get your data in the C# code behind and add it to your component.
ie, you can write things like (for a TextBox):
string myData = MyDao.getMyData();
myTextBoxComponent.Text = myData;

Does it help you ?

MagicBen
Reply With Quote