User1838126768 posted
I've got a Dropdownlist with Categories
I've also got a Listbox with Items filled using the selection from the DDL (autopostback=true).
I have a SQLDataSource for each one.
the DDL populates perfectly. the listbox SQL DataSource uses a stored procedure, that, on its own works perfectly.
It works well just as outlined above. However, when I add the following properties to the DDL, I get an error:
appendDataBoundItems=true and '--Select--' (tried 'Select' also) as an item
the error is:
Input string was not in a correct format
I also set up the sqlDataSource selecting event handler, so that it would check for 'Select' first, but it bypasses that handler when debugging, and goes straight to the error msg
I set web.config to debug=true and set customErrors to Off and that's all I get....
Any ideas?