Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Add select value in dropdown in asp.net



ListItem lst = new ListItem();
            lst.Text = “Select Value”;
            lst.Value = "0";
            DropDownList1.Items.Insert(0, lst);


This post first appeared on Pivot In SQL Server, please read the originial post: here

Share the post

Add select value in dropdown in asp.net

×

Subscribe to Pivot In Sql Server

Get updates delivered right to your inbox!

Thank you for your subscription

×