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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:38:23+00:00 2026-05-23T10:38:23+00:00

In the database, I have a table ‘Years’, that contains columns for ‘YearId’, ‘YearStart’

  • 0

In the database, I have a table ‘Years’, that contains columns for ‘YearId’, ‘YearStart’ and ‘YearEnd’ (don’t ask me why, its not my database).

I need to populate an asp:DropDownList with the different year values in the table, ie. I need the dropdown to be like:

//pseudocode
<select>
    <option>2010</option>
    <option>2011</option>
    ..etc..
</select>

But since the ‘YearStart’ and ‘YearEnd’ are stored in DateTime format, I’m getting this:

//pseudocode
<select>
    <option>1/1/2010 12:00:00 AM</option>
    <option>1/1/2011 12:00:00 AM</option>
    ..etc..
</select>

Here is how I am currently populating the DropDownList:

dropDownList.DataSource = DataContext.Years;
dropDownList.DataValueField = "YearId";
dropDownList.DataTextField = "YearStart";
dropDownList.DataBind();

Basically, I need the dropDownList.DataTextField to be in DateTime.Year form, ie:

//pseudocode
dropDownList.DataTextField = ("YearStart").Year;

So what would be the best way to populate the dropDownList and achieve what I need?

  • 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-23T10:38:24+00:00Added an answer on May 23, 2026 at 10:38 am

    You can try including DataTextFormatString

    dropDownList.DataTextFormatString = "{0:YYYY}";
    

    or

    you can tweak the DataSource like this

    dropDownList.DataSource = DataContext.Years.Select(y => new {y.YearID, YearStart = y.YearStart.Year})
                                        .ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table in a MSSQL database that looks like this: Timestamp (datetime)
I have a table in the database that I'm retrieving using LINQ to SQL,
I have a database table that i want to allow my friends to update.
i have table in my database that have senestive data such as password field
In my database I have a table in which one of the columns is
In my oracle database I have table called PERSON with columns code, surname, forename.
In a database i have a table prospect and has two columns firstname and
In my database i have table what contains a file name pattern. Pattern in
MYSQL Database: I have a table of data that I need to put into
In the database you have a table with a bit field, let call that

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.