Author: geeta_ravikanti | Posted on: 6/6/2008 12:06:46 AM | Views : 1587

Hi friends,
 
 My program is related to add the radio buttons to the listbox
what is my problem is I am displaying the data in the the listbox but its not displaying the radio buttons
here my code is
SqlConnection conn = new SqlConnection(connString);
        conn.Open();
        SqlCommand cmd = new SqlCommand("select roleName from RoleMasterTable",conn);
        SqlDataReader rdr = null;
        rdr = cmd.ExecuteReader();

            while(rdr.Read())
            {
                            
  & ...

Go to the complete details ...