HOW TO: Set the Default Date for the Calendar Control by Using ASP with FrontPage 2002 (291200)



The information in this article applies to:

  • Microsoft FrontPage 2002

This article was previously published under Q291200
For a Microsoft FrontPage 2000 version of this article, see 289579.

IN THIS TASK

SUMMARY

When you insert the ActiveX Calendar Control, the default date is set to the date when the page was created. This article describes how to programmatically set the default date value for the ActiveX Calendar Control by using Microsoft Active Server Pages (ASP).

back to the top

Set the Default Date for the Calendar Control by Using ASP

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. NOTE: You may receive an error message if you copy the examples directly from this article and paste them into FrontPage. The angle brackets (< and >) may appear as escaped HTML code (< and >). To work around this behavior, paste the script into a blank Notepad document, and then copy it from Notepad before you paste it into FrontPage.
  1. Open a web in FrontPage on a Microsoft Internet Information Services (IIS) Web server.
  2. Open a new blank page.
  3. Insert the Calendar Control. To do this, follow these steps:
    1. On the Insert menu, click Web Component.
    2. Under Component type, click Advanced Controls.
    3. Under Choose a control, click ActiveX Control.
    4. Click Next.
    5. Select Calendar Control 10.0.
    6. Click Finish.
  4. Switch to HTML view.
  5. Find the section of code that looks like this:
    <param name="Year" value="2000">
    <param name="Month" value="1">
    <param name="Day" value="1">
    						
    Change the code to look like this:
    <param name="Year" value="<%=Year(Date())%>">
    <param name="Month" value="<%=Month(Date())%>">
    <param name="Day" value="<%=Day(Date())%>">
    					
  6. Switch to Normal view.
  7. Save the page with an ASP extension.
When you browse the page by using HTTP, the ASP code automatically creates the default date based on the current date.

back to the top

Modification Type:MajorLast Reviewed:6/18/2005
Keywords:kbhowto kbHOWTOmaster KB291200 kbAudITPro