ASP.NET DateTime Picker

前端 未结 11 1464
一个人的身影
一个人的身影 2020-11-27 18:35

is there any good free/open source time picker control that goes well with ASP.NET Calendar control?

11条回答
  •  渐次进展
    2020-11-27 18:50

    If you would like to work with a textbox, be aware that setting the TextMode property to "Date" will not work on Internet Explorer 11, because it does not currently support the "Date", "DateTime", nor "Time" values.

    This example illustrates how to implement it using a textbox, including validation of the dates (since the user could enter just numbers). It will work on Internet Explorer 11 as well other web browsers.

    
    
    
       
       
     
     Date invalid, please check format. 
     
     
    

提交回复
热议问题