ASP.NET Calendar - Date picker mode and custom image

Click on the calendar image near the textbox.

  Select date <obout:Calendar DatePickerImagePath ="icon2.gif" ...
 
  Select date <obout:Calendar DatePickerImagePath ="date_picker1.gif" ...
 
  Select date <obout:Calendar DatePickerImagePath ="date_picker2.gif" ...

For a custom appearance of the date picker image you can also modify this css class:

.calendarDatePickerButton             {
            cursor:pointer;
            cursor:hand;
            vertical-align:middle;            ...

ASP.NET

    <ASP:TextBox runat="server" ID="txtDate"></ASP:TextBox>
    <obout:Calendar runat="server"
         DatePickerMode="true"
         TextBoxId="txtDate">
    </obout:Calendar>