我有一个UI,用户将根据它选择一个表名,下一个下拉列表将会更新。 我想通过某种方式管理第二个下拉列表并列出该选择表中的所有列。(我知道这可能是风险,可能比我想的更简单。)
答案 0 :(得分:1)
比如说:
protected void DropDown2_SelectedIndexChanged(object sender, EventArgs e)
{
// do all connection things.
query="select COLUMN_NAME from ALL_TAB_COLUMNS where
TABLE_NAME="+DropDown1.SelectedValue.ToString();
}
在第二个下拉列表中写入此内容,并在dropdown1
中选择表名