如何仅在单选按钮列表控件中选择“选择日期”时显示日历控件和文本框控件?
<asp:RadioButtonList ID="rbl_immediate_date_view_2" CssClass="gp-contact-us-radiolist" runat="server">
<asp:ListItem>Immediate</asp:ListItem>
<asp:ListItem>Select date</asp:ListItem>
</asp:RadioButtonList>
<asp:TextBox ID="txtStartDate" runat="server"></asp:TextBox>
<asp:CalendarExtender ID="calendar_view_2" TargetControlID="txtStartDate" PopupButtonID="rbl_immediate_date_view_2" runat="server" />