0

I'm looking for a line or two of code that will bind a DataSet.Datatable column to a textbox on a Datarepeater?

Brett Veenstra
  • 47,674
  • 18
  • 70
  • 86
Alex
  • 2,081
  • 14
  • 49
  • 76

2 Answers2

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
0

There's a pretty good How-to video on MSDN that covers the DataRepeater. I'd suggest taking a look there.

http://msdn.microsoft.com/en-us/vbasic/cc411420.aspx

Walter
  • 2,540
  • 2
  • 30
  • 38