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 file log that I would like to parse and am having
For example in my datalist if Eval(OptionJ).Tostring = Null I would like the function
I have have icefaces datatable and when user clicks a row, I would like
.NET pros out there I have a problem that i would like to share
I would like to create ListView using CustomAdapter that extends BaseAdapter . I have
I have a datalist being generated with ASP, but unfortunately the jQuery script that
I have a datalist inside a usercontrol that gets loaded into a page where
Kinda hard to explain, but i'll try. I have a datalist that is populated
I have the datalist = 62, 76, 80, 72, 71, 75, 77 that i

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.