I tried to add radio button list items dynamically with code and i got this error:
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
ListItem item = new ListItem();
item.Text = BorderStyle.None.ToString();
item.Value = ((int)BorderStyle.None).ToString();
lstBorder.Items.Add(item);
}
}
I would appreciate if you could help me. I even didnt get the part if Items is not a property in radio button list? how could i fix it?