可以在 BoundColumn.DataField 中调用函数吗?

发布于 2024-07-14 10:55:02 字数 427 浏览 12 评论 0原文

<asp:BoundColumn DataField="pos" HeaderText="Principal Office" />

是否有可能以某种方式...

<asp:BoundColumn DataField="postProccess(pos)" HeaderText="Principal Office" />

...这样我就可以根据需要修改该值?

CRAP:

A field or property with the name 'postProcess(pos)' was not found on the selected data source.

有人知道我如何可以覆盖那个东西或其他东西吗?

<asp:BoundColumn DataField="pos" HeaderText="Principal Office" />

would it be possible to somehow...

<asp:BoundColumn DataField="postProccess(pos)" HeaderText="Principal Office" />

...so I could modify the value as needed?

CRAP:

A field or property with the name 'postProcess(pos)' was not found on the selected data source.

Anyone know how I can override that thing or something??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅暮の光 2024-07-21 10:55:02

这是您想要用于模板列的完整片段...

<asp:TemplateColumn HeaderText="Principal Office">
   <ItemTemplate>
      <%# postProcess(Eval("pos")) %>
   <ItemTemplate>
<asp:TemplateColumn>

Here is the full snippet you'd want to use for your template column...

<asp:TemplateColumn HeaderText="Principal Office">
   <ItemTemplate>
      <%# postProcess(Eval("pos")) %>
   <ItemTemplate>
<asp:TemplateColumn>
仅冇旳回忆 2024-07-21 10:55:02

use an <asp:templatecolumn> and do the post processing in the ItemDataBound event

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文