Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6233767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:21:32+00:00 2026-05-24T10:21:32+00:00

How can one remove duplicate items from dropdownlist in asp.net making sure that only

  • 0

How can one remove duplicate items from dropdownlist in asp.net making sure that only unique values are listed in dropdownlist

Sorry if this is the duplicate question. Searched the SO but couldn’t find it.

UPDATED CODE:

 private void BindDropdown(DropDownList ddlColumn)
    {
        DataTable dtBinddropDown = new DataTable();
        DataSet dsBinddrodown = new DataSet("dsSample");
        dtBinddropDown = (DataTable)Session[GlobalConstants.SESSION_MYSESSION];
        dsBinddrodown.Tables.Add(dtBinddropDown.Copy());
        System.Collections.ArrayList arItems = new System.Collections.ArrayList();

        if (ddlColumn.ID == "ddlEntryDate")
        {
            for (int i = 1; i < dsBinddrodown.Tables[0].Rows.Count; i++)
            {
                arItems.Add(dsBinddrodown.Tables[0].Rows[i]["Column 1"].ToString());
            }
            ddlColumn.DataSource = arItems;
            ddlColumn.DataBind();
        }
}

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T10:21:34+00:00Added an answer on May 24, 2026 at 10:21 am

    if your datasource uses a generic list, you could use LINQ to clear any duplicates before you bind it to your dropdown control – im assuming your using webforms ?

            // ******
            // Remove Any Duplicate Vehicles
            // ********************
            List<Vehicle> NoDuplicatesVehicleList = ListVehicle.AllVehicles;
            NoDuplicatesVehicleList = NoDuplicatesVehicleList.GroupBy(x => x.VehicleID).Select(x => x.First()).ToList();
    

    this is what i have used to remove duplicate vehicle objects on my site using the VehicleID, but the same would apply to your dropdown.

    hope that helps

    Truegilly

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I copy selected items from one listview to another on button click..??
Is there any possibility in SQL to remove (only one) duplicate entries of composed
How can one remove all text, but leave the structure intact? for example: <animals>
One can remove all calls to printf() using #define printf . What if I
Any one can share the mainfest.xml. How to set it? then can remove the
Can one specify XML attribute values as CDATA ? If yes - what would
How can one interface with Google Sketchup , via the API, from a Windows
We recently had some issues where a sql script that would remove duplicate entries
I'm faced with a situation that I think can only be solved by using
One of the nice things about ASP.Net is the ability to set a site.master

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.