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 2003. 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 2003.
To
use ASP to set the default date for the ActiveX Calendar Control, follow these
steps:
- Start FrontPage 2003, and then open a Web page on a
Microsoft Internet Information Services (IIS) Web server.
- On the File menu, click
New.
- In the New pane, click Blank
page.
- Insert the Calendar Control into the blank page. To do
this, follow these steps:
- On the Insert menu, click Web
Component.
- Under Component type, click
Advanced Controls.
- Under Choose a control, click
ActiveX Control, and then click
Next.
- Click Calendar Control 11.0, and then
click Finish.
- At the bottom of the Web page pane, click
Code.
- Find the section of code that is similar to the following:
<param name="Year" value="2003">
<param name="Month" value="7">
<param name="Day" value="22">
Change the code to look similar to the following: <param name="Year" value="<%=Year(Date())%>">
<param name="Month" value="<%=Month(Date())%>">
<param name="Day" value="<%=Day(Date())%>">
- At the bottom of the Web page pane, click
Design.
- On the File menu, click
Save.
- In the Save As dialog box, in the
File name box, type calendar.asp, and
then click Save to save the page with an ASP
extension.
When you open the page in your Web browser, the ASP code
automatically sets the default date based on the current date.