Oct 9, 2004 #1 adonet MIS May 4, 2004 312 US How to Make first item as blank in dropdown list if bind table no blank row?
Oct 13, 2004 #2 CodeFun Programmer Sep 9, 2004 7 US Hello, I know one way to do that. I would do a loop to add data into the listbox. The first item will be empty string. Hope this help. Upvote 0 Downvote
Hello, I know one way to do that. I would do a loop to add data into the listbox. The first item will be empty string. Hope this help.
Oct 13, 2004 Thread starter #3 adonet MIS May 4, 2004 312 US Thank you. I got it finally: Me.ddlOrder.Items.Insert(0, New ListItem("", "value")) Upvote 0 Downvote