In my project i have a UserControl
named SubControl. In that UserControl which contains TreeList
and two Button
. the button used to focus the next and previous row of the treelist.
In another project I have another UserControl named MainControl various controls and Here i'm using the SubControl.
What my problem is, From MainControl i can't able to bind the data into the treelist from the database.
SqlConnection SqlCon = new SqlConnection("Data Source=source; Initial Catalog=dbname; Integrated Security=True");
SqlCon.Open();
SqlCommand ad = new SqlCommand("Select* from mytablename", SqlCon);
SqlDataAdapter da = new SqlDataAdapter(ad);
DataSet ds = new DataSet();
da.Fill(ds);
SubControl.DataSource = ds;
SubControl.DataBindings();
How can i achieve this. Helps appreciated