I am facing similar issue that repeater isn't refreshing data coming in the datatable but still not binding to the repeater
Public Sub FillRepeater()
Try
Dim _dt As New DataTable
Dim Fdate As Date = Nothing
Dim ToDate As Date = Nothing
Dim sucode = ""
Dim stcode = ""
Dim _filter As String = ""
_dt = New PharmacyStoreBLL().TDR_MapSupplierList1(Fdate, ToDate, hidTendor.Value, hidItem.Value, Session("HoCode"))
If _dt.Rows.Count > 0 Then
rptSupplier.DataSource = _dt
rptSupplier.DataBind()
Else
rptSupplier.DataSource = Nothing
rptSupplier.DataBind()
End If
Catch ex As Exception
Dim _genFun As New GenFunction
_genFun.AddToLogFile("Method : " & System.Reflection.MethodBase.GetCurrentMethod().Name & " , Exception: " & ex.Message & " Exception Path : " & HttpContext.Current.Request.RawUrl, ex)
End Try
End Sub