将3个不同DropdownList中的数据导入SQL数据库

时间:2017-06-26 16:20:39

标签: c# sql asp.net

所以我试图创建以下内容:我有3个下拉列表(当天一个,本月另一个,一年中的其他一个)我希望在SQL数据库上连接这三个元素。

基本上,这是我要保存的生日。

图片:

Where the user select the Birthday Date

Where I want to save the Date 'all together' (day, month and year)

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

获取日期并使用以下代码段将值存储到数据库。

var date = new DateTime(year, month, date);


        SqlCommand cmd = new SqlCommand("INSERT INTO <table> (<column>) VALUES (@value)", connection);
        cmd.Parameters.AddWithValue("@value", date);

        cmd.ExecuteNonQuery();