テキスト ボックスとカレンダー エクステンダーがあります。ページ Default.aspx のコードは次のとおりです。
<asp:TextBox ID="tbdate" runat="server"></asp:TextBox>
<asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="tbdate"
Format="dd.MM.yyyy">
</asp:CalendarExtender>
Default.aspx.csページで、TextBoxの値をDataTableの新しい列に挿入しようとしています
dt.Columns.Add("date", typeof(string), tbdate.Text);
そして、私はこのエラーがあります
トークン '.' を解釈できません。6 の位置にあります。