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

  • SEARCH
  • Home
  • 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 5949295
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:13:43+00:00 2026-05-22T17:13:43+00:00

I have a ListBox that I populate from a database view, and then I

  • 0

I have a ListBox that I populate from a database view, and then I want to add an attribute to each ListItem. Imagine if the user can select a City on the page and some javascript runs to filter down the listbox to only employees in that city. The javascript is no problem, but I need to add an attribute to each listitem that indicates what city the employee belongs to. Of course I could just have a couple loops where employeeID matches add the City. Is there was a better way using databinding or some sort of LINQ query to accomplish this?

employeesListBox.DataSource = (from p in dwEntitiesContext.Employees
                                      orderby p.name
                                      select p).ToList();

      employeesListBox.DataTextField = "Full Name";
      employeesListBox.DataValueField = "EmployeeID";
      employeesListBox.DataBind();

      //this gives you the idea of what I want to do, 
      //but obviously I can't access p.City here
      //Was wondering if there was some technique of doing a join, 
      //or some way to databind the attribute
      employeesListBox.Items.Cast<ListItem>().Select(eachItem => 
      eachItem.Attributes.Add("CityID", p.City 
      /*set City attribute of the employee this listitem represents*/));

By adding the CityID attribute, my javascript/jquery will a way to filter the listbox as users select different cities. Note that I am not asking you to filter the list in advance, because that would require a postback everytime the user selects a City. I am just giving you this extra info because people often want to know more background than just the task at hand.

  • 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-22T17:13:44+00:00Added an answer on May 22, 2026 at 5:13 pm

    you can try something like that:

    foreach(var employee in dwEntitiesContext.Employees.OrderBy(e => e.name))
    {
        var listItem = new ListItem
            {
                Text = employee.FullName,
                Value = employee.EmployeeID
            };
    
        listItem.Attributes.Add("CityID", employee.City);
    
        employeesListBox.Items.Add(listItem);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListBox that is bound to a list of Persons. I want
I have a ListBox control that I want to change into having a toggle
I have a ListBox that gets populated with items read from a JSON response.
I have several listboxes that get each of their data from a separate stored
Background: I have a winForm app that registers a user in the database based
I have a listbox (multi-select) in my web form that is populated from a
I have a ListBox that has a style defined for ListBoxItems. Inside this style,
I have a listbox that is databound to a Collection of objects. The listbox
I have a ListBox that when in focus, and when I have an item
I have a ListBox that during development I had the items in the ListBox

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.