Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        去年关闭。
                                                                                            
                
        
这是我的工厂控制所遇到的问题:


没有一个简单的方法来获取第一个可见日期(是的,我可以使用日渲染,但是在页面周期的那一点上,我无法做我需要做的事情,即在viewstate中操作集合)
在我的代码中更改visibledate属性不会引发visiblemonthchanged事件。这对我来说毫无意义。


有人可以提出免费的,经过改进的日历控件吗?

最佳答案

jQuery datepicker

例:

<input id='datepicker' class='datepicker' />

$(function(){
$(".datepicker").datepicker({
                          buttonImage: "/Content/img/calendar.gif",
                          buttonImageOnly: true });
});

关于c# - ASP.net日历控件有任何免费替代品吗? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/917512/

10-09 14:50