Hi,
I have a CheckBoxList in web form and I am populating the list items from the database in the page_load event. Now for each list item i have to set the tool tip using the value from the database.
Any idea please.
Thanks
Manoj.
I have a CheckBoxList in web form and I am populating the list items from the database in the page_load event. Now for each list item i have to set the tool tip using the value from the database.
Code:
CheckBoxList1 .DataTextField = "Name";
CheckBoxList1.DataValueField = "Description";
CheckBoxList1.DataBind();
Thanks
Manoj.
Comment