这是我面临的未经实践的问题。.Net下拉列表控件显示
System.Bytes[]来自MySQL数据库的数据,SP query是
Select concat('(', cast(AccountID as varchar), ')') as AccountID
AccountID与DropDownlist控件绑定。

最佳答案

我也有类似的问题。根据this bug report这不是一个bug,您应该尝试:

Select cast(concat('(', AccountID, ')') as CHAR) as AccountID

关于asp.net - 下拉列表控件显示System.Bytes [],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5892821/

10-09 18:18