i have .net datatable in that table 10 records are there, i want to bind only 4th record only please help
u just filter 4th row from your datatable to dataview and bind to repeater control.
DataView dv = dataTable.DefaultView;//Set the row filterdv.RowFilter = string.Format("RowIndex={0}", 4);Repeater1.DataSource = dv;Repeater1.DataBind();