W
wilkinsonr
Hi All,
I'm having a metal blank. This is my class:
public class MyRepeaterItem : System.Web.UI.WebControls.RepeaterItem
{
public MyRepeaterItem(int itemIndex, ListItemType itemType) :
base(itemIndex, itemType) {}
public bool IsDataItem {
get {
return ((this.ItemType == ListItemType.Item) || (this.ItemType
== ListItemType.AlternatingItem));
}
}
public Image Images(string ID) {
return (Image)FindControl(ID);
}
}
and this is my code:
protected void repFiles_ItemDataBound(object sender,
RepeaterItemEventArgs e) {
MyRepeaterItem rep = (MyRepeaterItem)e.Item;
if (rep.IsDataItem) {
rep.Images("icon").ImageUrl = "icons/testing.jpg";
}
}
and I get the error "Unable to cast object of type
'System.Web.UI.WebControls.RepeaterItem' to type 'MyRepeaterItem'."
All I want to do is add some helper functions to the RepeaterItem. Any
helpp would be great.
Thanks,
I'm having a metal blank. This is my class:
public class MyRepeaterItem : System.Web.UI.WebControls.RepeaterItem
{
public MyRepeaterItem(int itemIndex, ListItemType itemType) :
base(itemIndex, itemType) {}
public bool IsDataItem {
get {
return ((this.ItemType == ListItemType.Item) || (this.ItemType
== ListItemType.AlternatingItem));
}
}
public Image Images(string ID) {
return (Image)FindControl(ID);
}
}
and this is my code:
protected void repFiles_ItemDataBound(object sender,
RepeaterItemEventArgs e) {
MyRepeaterItem rep = (MyRepeaterItem)e.Item;
if (rep.IsDataItem) {
rep.Images("icon").ImageUrl = "icons/testing.jpg";
}
}
and I get the error "Unable to cast object of type
'System.Web.UI.WebControls.RepeaterItem' to type 'MyRepeaterItem'."
All I want to do is add some helper functions to the RepeaterItem. Any
helpp would be great.
Thanks,