LinkButton lnkBtnRemove = (LinkButton)Repeater1.Items[0].FindControl("lnkRemove");
lnkBtnRemove.Visible = false;
i used above code to make visible false of a link button i have placed in a repeater control.but it gives me a error of
"Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"
i'm trying use this code in Page_Load.Pls help....