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 ...