0

我正在使用 Oracle Connection 来填充我的下拉列表。我创建了一个简单的下拉 ASP.NET 控件,下面是我试图填充它的代码。

private void ShowDropDown()
        {
            DataTable table = new DataTable();


            string connectionString = GetConnectionString();
            string sqlQuery = "select distinct duty_date from duty_rota where  duty_date BETWEEN SYSDATE - 300 AND SYSDATE + 300";


            using (OracleConnection conn = new OracleConnection(connectionString))
            {

                try
                {
                    conn.Open();

                    using (OracleCommand cmd = new OracleCommand(sqlQuery, conn))
                    {

                        using (OracleDataAdapter ODA = new OracleDataAdapter(cmd))
                        {

                            ODA.Fill(table);

                        }

                    }
                }
                catch (Exception ex)
                {
                    Response.Write("Not Connected" + ex.ToString());
                }

            }

            //DropDownList1.DataSource = table;
            //DropDownList1.DataValueField = "";

            DropDownList1.DataSource = table;
            DropDownList1.DataValueField = "duty_date";
            DropDownList1.DataTextFormatString = "{0:dddd,MMMM dd,yyyy}";


            DropDownList1.DataBind();
        }

我把格式放在下面的方式

DropDownList1.DataTextFormatString = "{0:dddd,MMMM dd,yyyy}";

但 DropDownList 以 10/28/2013 格式显示数据。有人可以帮助我如何实现 2013 年 10 月 29 日星期一格式的格式。

4

1 回答 1

1


   绑定下拉列表时,我们需要设置 DataTextField 和 DataValueField。DataTextField 用于显示目的,DataValeField 用于值目的(当要使用选定的文本值时)。
   在这里您忘记添加 DataTextField。

DropDownList1.DataTextField = "field name";

希望它可以帮助你。
谢谢。

于 2013-10-28T09:43:49.033 回答