剣道UIの日付ピッカーを持っていますが、選択した日付をラベルに表示したいと思います。選択した日付をラベルにバインドしたいのですが、.csページにどのコードを追加する必要がありますか?
<script type="text/javascript">
$(document).ready(function() {
$("#date").kendoDatePicker();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div style="width: 155px;">
<input id="date" />
</div>
<asp:Label ID="lblDate" runat="server" Text="Label"></asp:Label>
</form>
</body>