Set SelectedValue свойство.
if(!IsPostBack)
{
....
RadioButtonList1.DataBind();
RadioButtonList1.SelectedValue="Daily At";
}
Вы можете использовать свойство SelectedIndex.
if(!IsPostBack)
{
....
RadioButtonList1.DataBind();
RadioButtonList1.SelectedIndex=1;
}
Вот пример для справки:
public class Data
{
public int No { get; set; }
public string Name { get; set; }
}
Код в событии Page_Load
if (!IsPostBack)
{
List<Data> list = new List<Data>()
{
new Data() { Name="Test1", No=10},
new Data() { Name="Test2", No=20},
new Data() { Name="Test3", No=30}
};
RadioButtonList1.DataSource = list;
RadioButtonList1.DataTextField = "Name";
RadioButtonList1.DataValueField = "No";
RadioButtonList1.DataBind();
RadioButtonList1.SelectedValue = "30";
}