Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表单,其中有两个 DropdownList“状态”和“货架”都有 SQL 数据源并且它们是依赖的。每当我插入记录时,它都会完美输入,但“状态”和“货架”列包含“值”而不是“文本”。
SelectedValue由于您使用属性设置参数,因此您将获得DataValueField有界到下拉列表。如果你需要得到DataTextField,然后尝试如下
SelectedValue
DataValueField
DataTextField
command.Parameters.AddWithValue("@status", DdlStatus.SelectedItem.Text); command.Parameters.AddWithValue("@shelf", DdlShelf.SelectedItem.Text);