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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:40:22+00:00 2026-05-12T06:40:22+00:00

I am creating a GridView in a method like so: GridView gridView = new

  • 0

I am creating a GridView in a method like so:

GridView gridView = new GridView();
gridView.DataSource = reportData.Tables[0];
gridView.DataBind();

I am later exporting it to Excel and it works great. The columns are being auto-generated from my source data. I would like to change the DataFormatString property of some of the columns however after I databind and before I export to Excel. I can’t seem to find the correct property to change. Can anybody point me in the right direction?

  • 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-12T06:40:22+00:00Added an answer on May 12, 2026 at 6:40 am

    According to AutoGenerateColumns documentation:

    This option provides a convenient way
    to display every field in the data
    source; however, you have limited
    control of how an automatically
    generated column field is displayed or
    behaves
    .

    Note: Automatically
    generated bound column fields are not
    added to the Columns collection
    .

    I tired looking for these AutoGeneratedFields with no luck.
    I can think of several options to achieve that (from worst to best):

    1. Add an event to the grid (like RowDataBound), this will give you access to the rows’ cells, but isn’t too convenient.
    2. Don’t use AutoGeneratedField Create these columns manually, as in:

      BoundField dateField = new BoundField();
      dateField.HeaderText = "Date";
      dateField.DataField = "date";
      dateField.DataFormatString = "{0:MMMM, yyyy}";
      gridView.Columns.Add(dateField); 
      

      This options gives you bes control over titles.

    3. Add another layer for data formatting and presentation. This is probably the best option. Also, that way you don’t have to use DataTables, a GridView can by bound to any collection of objects with public properties (eg, to a List<Employee)), and AutoGeneratedField turns them into columns.
      I think this is the best option. Suppose you could access the auto columns, what then? You’d have to search for a column based on its name or index, which seems very messy, and increases coupling.

    And, as a last note, you should think about creating Excel files by using the API. It’s not as easy, but HTML XLS files are less compatible with Excel 2007 – it displays a warning message that the format of the file is incompatible with the extension, and worse, the file brakes if it is opened and saves (can be Save As though), making your files less user-friendly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 230k
  • Answers 230k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's saying the git gem/library/file isn't found: no such file… May 13, 2026 at 1:55 am
  • Editorial Team
    Editorial Team added an answer If you can't rely on the keys matching across both… May 13, 2026 at 1:55 am
  • Editorial Team
    Editorial Team added an answer IE Developer Toolbar really good to have for any developer.… May 13, 2026 at 1:55 am

Related Questions

I am creating a sample, application to understand repository and factory method patterns together,
I am using C# and .NET 3.5 and have a GridView that I am
Greetings! I'm creating a User Control that will display data in a GridView control.
I have an aspx page that has a control which serves as a summary

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.