Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
alpoor
Starting Member
29 Posts |
Posted - 2005-06-15 : 18:01:46
|
I have lots of textboxes on my webform. I need to bind them with fields from table. I am not sure how to bind with textboxes. I have seen so many samples for dropdown boxes and datagrid binding, but not with textboxesIs there any easy of doing itPlease any ideas |
|
jhermiz
3564 Posts |
Posted - 2005-06-15 : 19:20:36
|
You should not bind your data to your client application, this is bad practice since you are constantly connected to the database, updates / deletes / inserts / etc. can take much longer..performance will bite ya. Open the connection to your database, snatch the data and populate your web form, it will save you from headaches later on. Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]Imperfection living for perfection -- [url]http://jhermiz.blogspot.com/[/url] |
 |
|
|
|
|