hi,
i'm working on a website with lots of webcontrols on visual studio 2005
i'm trying to read the text on a drop down list but it always gives me the initial text and not the text that is selected by the user?
is this a bug or is there another way about it?
ive tried this
???
i'm working on a website with lots of webcontrols on visual studio 2005
i'm trying to read the text on a drop down list but it always gives me the initial text and not the text that is selected by the user?
is this a bug or is there another way about it?
ive tried this
Code:
Dim A as string = dropdownlist1.selecteditem.text 'gives initial text Dim A as string = dropdownlist1.text 'also gives initial text
Comment