1.con.Conn.Open();
2.SqlCommand cmd = new SqlCommand("procedurename", con.Conn);
3.cmd.CommandType = CommandType.StoredProcedure;
4.cmd.Parameters.AddWithValue("@parametername", RadioButtonList1.SelectedValue);
//here the same way u can do for radiobutton
like
cmd.Parameters.AddWithValue("@parametername", RadioButton1.SelectedValue);
5.cmd.ExecuteNonQuery();
6.con.Conn.Close();