I have the following strucure:
public struct AvailableSkillDetails
{
public int ID;
public int CDT_ID;
public int SKI_ID;
public bool DIPLOMA;
public DateTime DIPLOMA_DATE;
public string DESCRIPTION;
}
I put several of these objects in a sortedlist. Now I want to databind the sortedlist to the repeater. How would i display the value of the property "description" for each entry in the repeater?
public struct AvailableSkillDetails
{
public int ID;
public int CDT_ID;
public int SKI_ID;
public bool DIPLOMA;
public DateTime DIPLOMA_DATE;
public string DESCRIPTION;
}
I put several of these objects in a sortedlist. Now I want to databind the sortedlist to the repeater. How would i display the value of the property "description" for each entry in the repeater?