hi i have an ajax calendar extender control that is set to a textbox.
how can i get the current selected date value from the calendar ?
You don't give us much to go on here. Do you have a sample page, or a link to the control page?
Typically javascript like so will work:
var txtValue = document.getElementById('idoftextbox').value;
If that's not clear, post some more details.
it helped. thanks