Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 4th, 2007, 08:58 AM
Authorized User
 
Join Date: Sep 2007
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default Display today's date in a Dropdownlist

Hi everybody,

I would like to know if there is any chance to display in a dropdownlist today's date? I don't how to do that because I assume that I have to create some function that dynamically fills the datatextfield atribute, but I don't know where...

pd.The ddl is already filled with an array datasource, but I want to set by default today's date and when the user gets the page for the first time, the ddl displays this information(today's date)

Thanks a lot!!!!!
 
Old October 4th, 2007, 06:37 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

After you bind the array to the ddl you do this:

ddl.Items.Add(new ListItem(DateTime.Now.ToString())); //add today's date
ddl.SelectedIndex = ddl.Items.Count; //Set the selected item to the last one

-Peter
 
Old October 5th, 2007, 09:20 AM
Authorized User
 
Join Date: Sep 2007
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank you Peter it worked:D





Similar Threads
Thread Thread Starter Forum Replies Last Post
date display problem varia_mahesh Access ASP 3 October 22nd, 2012 03:56 AM
Dynamic Date Display velcrobomb SQL Language 3 April 3rd, 2007 10:10 AM
Display Table by Date werD420 Classic ASP Databases 9 January 31st, 2005 05:26 PM
From today's links to other htmlpages after define jefgees Javascript How-To 1 August 19th, 2004 01:13 PM
Date didn't display in pdf chinhow Crystal Reports 4 April 13th, 2004 03:29 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.