我有一个文本框和一个日历扩展器,这是页面 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。