0

所以我有一个事件,当您单击一个按钮时,我想向我的数据库发送一个int、和。现在它将从我的网络表单中获取“公司”和“DayNumber”的输入。我想将 my的值作为 WeatherRain 的布尔值和日期的输入。您应该能够选择日期,而不仅仅是从“现在”开始。我不知道完成这项工作的最佳方法是什么,我确实有大约 100 个不同的字段可供用户输入。stringdatetimeboolCheckBox01

protected void btnTryck_Click(object sender, EventArgs e)
{
    Dagbok bok = DagbokFactory.CreateNew();

    bok.Company = String.Format(TextBox1.Text);
    bok.DayNumber = Convert.ToInt32(TextBox19.Text);
    bok.WeatherRain = false;
    bok.Date = DateTime.Now;
}
4

2 回答 2

1

为了从您CheckBox01使用它的Checked属性中获取布尔值。

bok.WeatherRain = CheckBox01.Checked;

至于日期问题,我建议使用DateTimePicker控件让用户选择日期并使用Value属性获取其值。

于 2013-03-25T11:05:08.500 回答
1

为此使用 Checkbox 的选中属性,如下所示:

protected void btnTryck_Click(object sender, EventArgs e)
{
    Dagbok bok = DagbokFactory.CreateNew();

    bok.Company = String.Format(TextBox1.Text);
    bok.DayNumber = Convert.ToInt32(TextBox19.Text);
    bok.WeatherRain = CheckBox01.Checked;
    bok.Date = DateTime.Now;
}
于 2013-03-25T11:08:39.170 回答