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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:49:16+00:00 2026-06-11T04:49:16+00:00

I am displaying some information in DataList. Can i bind the DataList to two

  • 0

I am displaying some information in DataList.
Can i bind the DataList to two DataSources.??
since i am facing a situation in which the two rows needs to be populated from two different Tables. Below is what i am trying to do.

<asp:DataList runat="server" id="myDataList">
  <ItemTemplate>
    <b><%# DataBinder.Eval(Container.DataItem, "Column from DataSource1") %></b>
    <br />
    <%# DataBinder.Eval(Container.DataItem, "Column from DataSource2") %>
  </ItemTemplate>
</asp:DataList>
  • 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-11T04:49:17+00:00Added an answer on June 11, 2026 at 4:49 am

    It is not possible to bind 2 data sources to a single item.

    Ideally from database you must be getting the data by using the JOINS, if that is not possible than in your server side code make a datatable, fill it from the both data sources in such a way that in custom data table you have one row against each row in both data sources and than bind that data table with your data list.

    DataTable customTable = new DataTable();
            customTable.Columns.Add("Column1");
            customTable.Columns.Add("Column2");
    
            DataRow drNew = null;
            foreach(DataRow dR in 1stDataSource)
            {
                foreach(DataRow dR1 in 2ndDataSource)
                {
                    if(dR["ID"] == dR1["ID"])
                    {
                        drNew = customTable.NewRow();
                        drNew["Column1"] = dR["Column1"];
                        drNew["Column2"] = dR1["Column2"];
                        customTable.Rows.Add(drNew);
                        break;
                    }
                }
            }
    
            myDataList.DataSource = customTable;
            myDataList.DataBind();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a grid displaying some information and when I select multiple rows and
I have a View controller displaying some information (not table views). I have an
I am fetching some information from mysql database and I am displaying it using
My app is displaying some data in tabular form (400 rows and 7 columns
I am successfully displaying rows of information from my database on a webpage. I
I use nl2br when displaying some information that is saved somewhere, but when HTML
I have a bitmap displaying some medical information and want to have an option
I'm having some problems displaying a ProgressDialog. I have a method that scrapes information
I'm reading some files from the procfs every few seconds, and displaying the information.
i am displaying some pictures in iphone app.If user view the picture information,i am

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.