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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:05:19+00:00 2026-05-12T14:05:19+00:00

I have a datalist and would like to pull the row names from the

  • 0

I have a datalist and would like to pull the row names from the table that I am getting my values from for the datalist. Heres an example of what I would like to do.

<HeaderTemplate>
    'Get data row names
'Maybe something like Container.DataItem(row)?
    </HeaderTemplate>
  • 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-12T14:05:19+00:00Added an answer on May 12, 2026 at 2:05 pm

    If you are using a DataTable as a Data Source for your Data List you could use the OnItemCreated method and provide a custom handler for the ItemCreated event to add the column header values. I’m not sure why you would want to do this. It sounds like a Repeater or GridView might be better suited to your needs. At any rate, here’s the code.

    <asp:DataList ID="DataList1" runat="server" OnItemCreated="DataList1_ItemCreated"
                ShowHeader="true" >
            <HeaderTemplate>
            </HeaderTemplate>
            </asp:DataList>
    
    protected void Page_Load(object sender, EventArgs e)
        {  
            using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ToString()))
            {
                conn.Open();
                SqlCommand comm = new SqlCommand("SELECT [id], [name], [email], [street], [city] FROM [employee_tbl]", conn);
                SqlDataAdapter da = new SqlDataAdapter(comm);
                da.Fill(dt);
            }
            DataList1.DataSource = dt;
            DataList1.DataBind();
        }
    
      protected void DataList1_ItemCreated(object sender, DataListItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Header)
            {
                foreach (DataColumn col in dt.Columns)
                {
                    Literal lit = new Literal();
                    lit.Text = col.ColumnName;
                    e.Item.Controls.Add(lit);
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a datalist that shows information from a SQL table perfectly. Is there
I have a table that is created in a DataList in ASP.Net. This table
I have a file log that I would like to parse and am having
I have Datalist that is inside an updatepanel and it is in panel in
I have a DataList like so: <asp:DataList ID=dlMyList runat=server RepeatColumns=5 RepeatDirection=Horizontal CellSpacing=5 > <ItemTemplate>
I have a DataList control that displays a set of elements. Can anyone point
I would like to mimic the RepeatColumn function of the ASP.NET DataList control in
I have a datalist being generated with ASP, but unfortunately the jQuery script that
I have a DataList that has a collection of People bound to it, with
I have an ASP.NET datalist like this: <asp:DataList ID=DataList_Trips OnItemCommand=DataList_Trips_ItemCommand > <ItemTemplate> <div class=divListTrips>

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.