|
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
|