0

I am using a JQuery date picker in my project. I would like to know whether the user enters the input in DD/MM/YYYY after entering data in the datepicker text box? Or is it possible with a user can't enter date with out using date picker? I am using the UI of Reporting services. So its not possible while clicking any button. I would like to check the details after user enters the data.

Thanks in advance!

user2395176
  • 195
  • 1
  • 1
  • 11

1 Answers1

0

In case you want to force the user to use the date picker, set your textbox to read only, any also add an onclick event to it, which opens the datepicker. For example put in the page_load event handler:

Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs)
    Textbox1.ReadOnly = True
End Sub
Peter_Szabo
  • 11
  • 1
  • 4
  • I am a fresher and I have no experience with JQuery. It would be great if you could provide me with the code snippet.. – user2395176 May 28 '13 at 19:01