Tuesday, July 23, 2013

how to append an item to a drop down list in asp.net

some times we may need to append an item a drop down list in asp.net for user to understand easily

VB.Net Code

ddl.Items.Insert(0, New ListItem("-- Please Select --", "-"))

No comments:

Post a Comment