For example, in the ItemDatabound
event:
protected void rptData_ItemDataBound(object source, RepeaterCommandEventArgs e)
{
HtmlAnchor a1 = (HtmlAnchor)e.Item.FindControl("a1");
a1.HRef = "www.mySite.com/mypage.aspx";
}
Also, don't forget to put runat="server"
on that anchor
Link1