//The Following describes C# Code Snippet For HashTableBinding To a RadioButtonList.//Here First a Hashtable is created with a key value pair and then appended to the radiobuttonlist Hashtable htable = new Hashtable(); htable.Add("N","Norway"); htable.Add("I", "India"); RadioButtonList1.DataSource = htable; RadioButtonList1.DataValueField = "Key"; RadioButtonList1.DataTextField = "Value"; RadioButtonList1.DataBind();