protected System.Web.UI.WebControls.RadioButtonList RadioButtonList1;

private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
for(int i=0;i<RadioButtonList1.Items.Count;i++)
{
 RadioButtonList1.Items[i].Attributes["onclick"]="alert('xxxxx')";
}}