Hello,
if you use the smart search you may use the Eval function in transformation:
<%# Eval("Pages") %>.
If you use the SQL search you may use code like this:
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
if (srchResults.DataSource != null)
ltlRepeaterCount.Text = srchResults.DataSource.Tables[0].Rows.Count.ToString();
}
It needs to add the literal control with ltlRepeaterCount ID to template.
Best regards,
Helena Grulichova