0

I am search in Google for a long time i need to create the keying type datepicker and also show the popup calander datepicker i used this reference but is third party need to install this setup in each system.

I need to flexible to use this code.

3
  • forums.asp.net/t/1902349.aspx Commented Jan 24, 2014 at 11:26
  • @user3129175 if I am not wrong you want date picker with text box showing your selected dat ? Commented Jan 24, 2014 at 11:29
  • my textbox should have like this format --/--/---- by default Commented Jan 24, 2014 at 12:06

2 Answers 2

1

Try Jquery Datepicker

Completely go through the demo and documentation

Sign up to request clarification or add additional context in comments.

Comments

0

This will show calendar and when you will select any date will show the date in text box than you can easily access text box value

<td style="width: 158px; padding-right: 15px">
    <asp:TextBox ID="txtDate1" runat="server" CssClass="textbox" Width="120px"          
    meta:resourcekey="txtDate1Resource1"></asp:TextBox>
   <asp:ImageButton ID="btnDate1" runat="server" CssClass="imgbutton"   
   ImageUrl="~/Images/Calendar.png" meta:resourcekey="btnDate1Resource1" />
   <cc1:CalendarExtender ID="CalendarExtender1" runat="server"  PopupButtonID="btnDate1"
   TargetControlID="txtDate1" Enabled="True">
   </cc1:CalendarExtender>
</td>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.