Hi,
I have to put calander control adjacent to TEXTBOX.ONCE User
selects date then it should get reflect in Textbox.I don't want to popup calender control. Is there a way can I do Just by setting the calander properties in .aspx page.
Printable View
Hi,
I have to put calander control adjacent to TEXTBOX.ONCE User
selects date then it should get reflect in Textbox.I don't want to popup calender control. Is there a way can I do Just by setting the calander properties in .aspx page.
As far as I know, the calendar control does not pop up. Whenever I have used it, it is always fully displayed on the page. To put the selected date into a text box:
I'm not sure if this answers your question, though...Code:Private Sub Calendar1_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Calendar2.SelectionChanged
TextBox1.Text = Calendar1.SelectedDate.ToString
End Sub
-Ranthalion