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 8315227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:05:03+00:00 2026-06-08T21:05:03+00:00

how do i set the multiple datasource to single dropdownlist? DrpPosition.ClearSelection(); DrpPosition.DataSource = AdvertizeManager.GetList(,

  • 0

how do i set the multiple datasource to single dropdownlist?

 DrpPosition.ClearSelection();
        DrpPosition.DataSource = AdvertizeManager.GetList("", "", "", "");
        DrpPosition.DataTextField = "PNAME";
        DrpPosition.DataValueField = "ADID";
        DrpPosition.DataBind();
        DrpPosition.DataSource = CategoryManager.GetList("", "", "", "");
        DrpPosition.DataTextField = "NAME";
        DrpPosition.DataValueField = "CATID";
        DrpPosition.DataBind();
  • 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-06-08T21:05:05+00:00Added an answer on June 8, 2026 at 9:05 pm

    You can use LINQ to easily solve this:

            var advertizes = AdvertizeManager.GetList...
            var categories = CategoryManager.GetList....
    
            // create your annonymous type
            var customAdvertizes = from advertize in advertizes
                    select new
                    {
                        Value = advertize.ADID,
                        Text = advertize.PNAME
                    };
    
            var finalQuery = customAdvertizes.Concat(
                from category in categories
                select new
                {
                    Value = category.CATID,
                    Text = category.NAME
                }
            );
    

    And then just bind it to your DropDownList

        DrpPosition.DataSource = finalQuery;
        DrpPosition.DataTextField = "Text";
        DrpPosition.DataValueField = "Value";
        DrpPosition.DataBind();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have set up multiple targets in a single xml file. I expect all
How Do I set multiple AND conditions? ex. SELECT * FROM CONFIRMED WHERE NOT
Is there a way to set multiple alsoResizes in jQuery UI? $('.selector').resizable({ alsoResize: '.other'
Quote from Jason Coco it not possible to set multiple in UILabel... but how
I'm trying to make an alarm clock in which you can set multiple times.
I was wondering, when you create an object you can often set multiple attributes
I've set up multiple vhosts under apache2 / mod_perl. I used the ErrorLog directive
If I set up multiple event handlers, like so: _webservice.RetrieveDataCompleted += ProcessData1; _webservice.RetrieveDataCompleted +=
I am using urllib2 to interact with a website that sends back multiple Set-Cookie
I have multiple websites set up in the same folder, and I want to

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.