I'm looking for a line or two of code that will bind a DataSet.Datatable column to a textbox on a Datarepeater?
Asked
Active
Viewed 4,324 times
2 Answers
1
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
- 10,750
- 19
- 66
- 101
-
2There does not seem to be a DataRepeater.DataBind() method. – Alex Nov 15 '09 at 08:34
0
There's a pretty good How-to video on MSDN that covers the DataRepeater. I'd suggest taking a look there.

Walter
- 2,540
- 2
- 30
- 38