I have a page with 3-4 date fields.
I created a Web User control to handle all the client interaction, with a text box, an image and a Calendar extender, So I can just drop one of this controls on the page for each field I need Calendar Controls:
<asp:TextBox ID="DateTextBox" runat="server"></asp:TextBox>
<img id="DateImg" src="../../themes/default/calendar-up.gif"/>
<cc1:CalendarExtender
PopupButtonID="DateImg"
ID="DateTextBoxCalendarExtender"
runat="server"
Enabled="True"
TargetControlID="DateTextBox"/>
This Web User control exposes the text in DateTextBox.
When I place one of this on the page it works OK, but if I put more, each time I click on an image, all the calendars get opened!
How can I avoid this? Is it naming issue?
