我试图在 ASPnet 中增加这个特定元素。用户在下拉框中选择一个特定的项目,它会随着用户的选择而增加数量。
If DropDownList1.SelectedIndex = 1 Then
DropDownList1.SelectedIndex = 0
intDonutqty += 1
txtDonut.Text = intDonutqty
End If
其他一切工作正常,但由于某种原因,它只是保持在 1 而不增加。
谢谢您的帮助