AjaxControlToolkit中的CalendarExtender被遮挡及日期格式本地化解决方法

/* from: http://hi.baidu.com/stockzh/blog/item/e833a94c3c5aedf2d62afc48.html */

在项目中的CSS中添加下面的样式,就可以解决CalendarExtender被DropList遮挡的问题。
.ajax__calendar {
    position: relative;
    left: 0px !important;
    top: 0px !important;
    visibility: visible;
    display: block;
}
.ajax__calendar iframe
{
    left: 0px !important;
    top: 0px !important;
}


日期格式本地化
CalendarExtender本地化需要在ScriptManager 中添加
EnableScriptGlobalization="true" EnableScriptLocalization="true"

原文地址:https://www.cnblogs.com/kofkyo/p/2297265.html