在webform中显示不同的选择?

时间:2010-02-21 23:45:04

标签: asp.net mysql

如果我在MySQL中使用常规的不同选择器并在转发器中显示结果,我可以使用以下代码在webform中显示数据。

<%# DataBinder.Eval(Container.DataItem, "posted") %>

但如果我使用此代码:

"SELECT DISTINCT mid(posted,6,1) ORDER BY posted DESC"

尝试使用上面的代码时出现以下错误。

DataBinding: 'System.Data.Common.DataRecordInternal' does not contain a
property with the name 'posted'.

那么如何通过“DISTINCT mid”选择器获取我收集的数据以显示在webform中?

1 个答案:

答案 0 :(得分:1)

执行此操作,using an alias

SELECT DISTINCT mid(posted,6,1) as posted 
FROM Something?
ORDER BY posted DESC