3
Answers

Textbox capturing Date from DateControl

SIVA

SIVA

13y
1.4k
1
Dear All,
I have textbox for capturing date.
Im going to insert it into the Database.

My requirement is when the focus comes into the textbox the Datecontrol should be Display beside it & when the date is selected from that conrol that date should be captured to textbox.

I need to go for JQuery & how it will be?
Answers (3)
0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 13y
hi siva,

please download attachment
and change its extension from zip to zipx.

I rename it because .zipx extension is not supported by his site.
0
SIVA

SIVA

NA 842 555.6k 13y
Hey Trivedi Can you please upload file once again.. Its corrupted Thanks in Advance..
0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 13y

Attachment new folder.zip

hi,
Jquery is good idea.

for date picker u required Jquery date time plug in.
down load atteched file
include in ur project.
 inyour body part..

<body>
    <div>
        <input id="datepicker" type="text">
    </div>
</body>

Header part..

<link href="../../Content/jquery-ui-1.8.6.custom.css" rel="stylesheet" type="text/css" />
<script src="../../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script src="../../Scripts/jquery-ui-1.8.6.custom.min.js" type="text/javascript"></script>
<script src="../../Scripts/jquery.ui.datetimepicker.js" type="text/javascript"></script>
<script src="../../Scripts/myscript.js" type="text/javascript"></script>
<script>
$(function () {
    $("#datepicker").datepicker();
});
</script>

Please Replace path jquery plug in..

you may also visit.
http://jqueryui.com/demos/datepicker/

hope this help.