我正在使用 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 日星期一格式的格式。