vote up 4 vote down star

Let's say I have an aspx page with this calendar control:

<asp:Calendar ID="Calendar1" runat="server"  SelectedDate="" ></asp:Calendar>

Is there anything I can put in for SelectedDate to make it use the current date by default, without having to use the code-behind?

flag

63% accept rate

5 Answers

vote up 3 vote down check

If you are already doing databinding:

<asp:Calendar ID="Calendar1" runat="server"  SelectedDate="<%# DateTime.Now %>" />

Will do it. This does require that somewhere you are doing a Page.DataBind() call (or a databind call on a parent control). If you are not doing that and you absolutely do not want any codebehind on the page, then you'll have to create a usercontrol that contains a calendar control and sets its selecteddate.

link|flag
vote up -1 vote down

The safe way: CalDate.SelectedDate = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd"));

Globalisation and dates can play havoc

link|flag
vote up 2 vote down

DateTime.Now will not work, use DateTime.Today instead.

link|flag
vote up 1 vote down

Two ways of doing it.

Late binding

<asp:Calendar ID="planning" runat="server" SelectedDate="<%# DateTime.Now %>"></asp:Calendar>

Code behind way (Page_Load solution)

protected void Page_Load(object sender, EventArgs e)
{
    BindCalendar();
}

private void BindCalendar()
{
    planning.SelectedDate = DateTime.Now;
}

Altough, I strongly recommend to do it from a BindMyStuff way. Single entry point easier to debug. But since you seems to know your game, you're all set.

link|flag
Unfortunately, this a very simple page and there's no other databinding anywhere. In fact, if I can get this working the way I want there won't even a code-behind. – Joel Coehoorn Oct 3 '08 at 13:13
vote up -1 vote down

why not set it in Page_Load?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.