Wednesday, 8 October 2014

How to Clear DropDownList Selected Item in ASP.Net C#

DropDownList Clear





C# Coding


  protected void Button1_Click(object sender, EventArgs e)
    {
        DropDownList1.SelectedIndex = -1;

    }









No comments:

Post a Comment