yes, maybe create another asp.net control (ascx) that has a repeater, create a public method that takes a data table (or list or items) and associates a repeater with this, you will probably do it in 10mins
public void BindData(DataTable dt) { rpt.DataSource = dt; rpt.DataBind(); }
It will work if your dt has the same column names.
source share