我在这里遗漏了一些非常简单的东西......我已经完成了调试器,一切正常,但ListBox没有填充新数据。当我运行网站时,它显示为空。
我想:
步骤1使用我的数据库中的文件路径字符串填充列表框。 (没关系)
步骤2使用ListBox项创建一个新List,从进程中的每个字符串中删除路径。 (这似乎没问题,count
在调试时list
正在增加
Step.3使用我的新“列表”重新填充ListBox。 (不工作)
<div>
<asp:ListBox ID="ListBox1" runat="server" Width="100%" Height="100%" AutoPostBack="true"/>
</div>
从数据库中检索文件路径并填充DataTable :(这没关系)
private DataTable loadUserImageNames()
{
string cpUsersConnection1 = ConfigurationManager.ConnectionStrings["cp_usersConnection"].ToString();
SqlConnection oSqlConnection1 = new SqlConnection(cpUsersConnection1);
oSqlConnection1.Open();
SqlCommand oSqlCommand1 = new SqlCommand();
oSqlCommand1.Connection = oSqlConnection1;
oSqlCommand1.CommandType = CommandType.Text;
oSqlCommand1.CommandText = "SELECT FilePath from User_Images where AcNo ='" + AcNo.Text + "' ORDER BY AcNo";
SqlDataAdapter oSqlDataAdapter1 = new SqlDataAdapter();
oSqlDataAdapter1.SelectCommand = oSqlCommand1;
DataTable oDataTable1 = new DataTable("User_Images");
oSqlDataAdapter1.Fill(oDataTable1);
return oDataTable1;
}
将DataTable分配给列表框(没关系)。
从ListBox中调出每个项目并删除Path,只留下finalFileName
(这没关系)。
将finalFileName
分配给list
(我认为没关系,'计数'正在调试中增加)
将list
分配给ListBox1
....这不起作用,ListBox1为空。
if (!Page.IsPostBack)
{
DataTable oDataTable1 = loadUserImageNames();
ListBox1.DataSource = oDataTable1;
ListBox1.DataTextField = "FilePath";
ListBox1.DataBind();
List<string> list = new List<string>();
foreach (ListItem s in ListBox1.Items)
{
string filePath = (s.ToString());
string finalFileName = (filePath.Substring(filePath.LastIndexOf('/') + 1));
list.Add(finalFileName);
}
ListBox1.DataSource = list;
}
答案 0 :(得分:1)
您无需创建list
来操纵数据,只需使用以下内容然后将其绑定到ListBox
控件即可。我已将FilePath
视为您将从数据库中检索的列名。
if (!Page.IsPostBack)
{
DataTable oDataTable1 = loadUserImageNames();
foreach (DataRow dr in oDataTable1.Rows)
{
string filePath = (dr.Field<string>("FilePath"));
string finalFileName = (filePath.Substring(filePath.LastIndexOf('/') + 1));
dr["FilePath"] = finalFileName;
// Or you can use following
// dr["FilePath"] = (filePath.Substring(filePath.LastIndexOf('/') + 1)); // In One Line
}
ListBox1.DataSource = oDataTable1;
ListBox1.DataTextField = "FilePath";
ListBox1.DataBind();
}