Databinding to a Textbox Control in ASP.NET

lioncava

New Member
This should be pretty simple, but its hanging me up. I've retrieved a value from the database and I'm looking to set it as the default value for the textbox. Does anyone know the best route for approaching this or have a link to an example on the Web? Thanks ahead of time.<BR><BR>-MarkRead the value for the database into a sqldatareader and then assign the textbox's text value to the datareader value.<BR><BR>IE.<BR>textbox.text = datareader("columnName")I should've known it was something simple like that. Its running properly now. Thanks for your help.
 
Back
Top