I have a User control ascx file with a textbox in it
<asp:TextBox ID="textboxDate" runat="server" CssClass="FieldValue" MaxLength="10"
Columns="12" autocomplete="off" Style="padding-right: 18px; border: 1px solid #567890;" />
<ajaxToolkit:CalendarExtender ID="calendarExtenderDate" runat="server" TargetControlID="textboxDate"
PopupButtonID="textboxDate" />
I’m adding this user control in my aspx page
<uc:DateControl ID="dateControlStart" runat="server" RequiredErrorMessage="please enter date" />
and i want the value of this textbox . How can i do this using javascript or Jquery.
Try the below
Thanks