0

我尝试将一个方法从我的 aspx.cs 页面恢复到我的 aspx 页面,它允许我返回一个字符串,所以我做了:

(...)

                <%= PrettyReqDAL(**Eval("Column").ToString()**, "OBP"))%>



            </DetailRow>
        </Templates>
        (..)
    </dx:ASPxGridView>

当我运行时,我收到此错误:

Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.

任何帮助将不胜感激。

4

1 回答 1

0

您需要使用数据绑定语法:<%# %>而不是<%= %>

于 2012-11-20T09:47:27.827 回答