Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics 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 July 8th, 2005, 10:55 AM
Authorized User
 
Join Date: Jun 2005
Posts: 32
Thanks: 0
Thanked 1 Time in 1 Post
Default how to retrieve the current date from the calendar

I am using a calendar for the user to select the date.they can only select the date after the current date.I have success control the month and year that has passed by such as march,2004 not to be selected by the user but not the day.So how to make it for the user can only select the future date and the previous date are not selectable? Using the code e.Day.Date.Day in the dayRender function can only retrive the last day of the current scene...

 
Old July 8th, 2005, 01:19 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

    Private Sub Calendar1_DayRender(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DayRenderEventArgs) Handles Calendar1.DayRender
        If e.Day.Date <= Today Then
            e.Day.IsSelectable = False
        End If
    End Sub






Similar Threads
Thread Thread Starter Forum Replies Last Post
current date in XSLT 1.0 pendyalap XSLT 1 April 18th, 2006 06:13 PM
Current Date s15199d Reporting Services 2 April 3rd, 2006 12:38 AM
Getting the Current Date in XSLT kwilliams XSLT 2 November 30th, 2005 03:23 PM
Current Date rgudino Java Databases 1 May 5th, 2005 03:09 AM
Current Date?? morpheus SQL Server 2000 2 November 27th, 2003 04:21 PM





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