如果这个问题看起来很基本,我很抱歉,但我很茫然。我是编程新手,但有足够的知识让自己迷失方向。基本上,我有一个下拉列表和一个中继器列表。如何在更改类别下拉列表时更改列表。这是在 C# 中。
这是下拉菜单的代码:
protected void PopulateCategories()
{
category myCategory = new category();
category[] myCategoryList = myCategory.Listing("title ASC");
ddlCategories.Items.Add("-- Select a category --");
ddlCategories.Items.Add("View all categories");
foreach (category category in myCategoryList)
{
ListItem item = new ListItem(category.title, category.category_id);
ddlCategories.Items.Add(item);
}
}
如果您需要更多信息,请询问。我是新手,我会很感激我能得到的任何帮助。提前致谢!