When i have debugged i have got below message
"ReferenceError: language is not defined
at eval (eval at <anonymous> (https://localhost:44300/Pages/Osm/OsmMtgList.aspx?IDBlobItem=&UrlRandom=&IDReport=&IDCustomer=&IDStartBoard=3548:6:13), <anonymous>:1:1)
at HTMLDocument.<anonymous> (https://localhost:44300/Pages/Osm/OsmMtgList.aspx?IDBlobItem=&UrlRandom=&IDReport=&IDCustomer=&IDStartBoard=3548:577:13)
at fire (https://localhost:44300/Scripts/jquery-1.9.1.js:1037:30)
at Object.fireWith [as resolveWith] (https://localhost:44300/Scripts/jquery-1.9.1.js:1148:7)
at Function.ready (https://localhost:44300/Scripts/jquery-1.9.1.js:433:13)
at HTMLDocument.completed (https://localhost:44300/Scripts/jquery-1.9.1.js:103:11)"
$("#txtDate").datepicker({
language: '<%= DirectCast(Session("Login"), Umbro.Data.Models.Login).CultureInfo.ToString.Substring(0, 2)%>',--this line
autoclose: true,
todayHighlight: true,
orientation: 'bottom auto',
defaultViewDate: 'today',
clearBtn: true
}).on('changeDate', function (e) {
if (table) {
$(".pagecontainer .loading").remove();
$(".pagecontainer").append('<div class="loading" style="position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;z-index:3"><div style="display:block;margin-left:auto;margin-right:auto;"><img src="/images/LoadingShape64Tr.gif" style="position:absolute;top:0;left:0;bottom:0;right:0;margin:auto;" /></div></div>');
table.draw();
}
});