Search code examples
vb.netwinformsdatarepeater

Binding data to a Data Repeater - VB.NET?


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


Solution

  • 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") %>