I'm looking for a line or two of code that will bind a DataSet.Datatable column to a textbox on a Datarepeater?
A:
first of you need to bind dataset to Repeater. DataRepeater.DataSource = Dataset.Table("name") DataRepeater.DataBind()
and then find your Textbox Text="" property and set there <%# Bind("columnname") %>
eugeneK
2009-11-15 08:15:22
There does not seem to be a DataRepeater.DataBind() method.
bochur1
2009-11-15 08:34:47
A:
There's a pretty good How-to video on MSDN that covers the DataRepeater. I'd suggest taking a look there.
Walter
2009-11-15 12:34:15