ASP.NET ObjectDatasource 使用代码隐藏属性
是否可以使用页面属性作为 ListBox 或其他控件(如 Telerik RadCombobox)的 Datasource/DataSourceID?
我在将数据绑定到 RadGrid 的 FilterTemplate 中定义的 Telerik RadCombobox 时遇到问题。我在页面的代码隐藏中创建了一个属性,并希望以这种方式访问它。
<telerik:GridBoundColumn [...]>
<FilterTemplate>
<telerik:RadComboBox
ID="filter"
AutoPostBack="false"
AppendDataBoundItems="true"
DataSourceID="<%# PropertyInTheCodeBehind %>"
runat="server" />
[...]
</FilterTemplate>
或者还有其他方法可以实现此目的吗? 我只想访问代码隐藏中的数据。
Is it possible to use a page-property as Datasource/DataSourceID for a ListBox or other controls like a Telerik RadCombobox?
I'm having a issue to bind data to a Telerik RadCombobox defined in a FilterTemplate of a RadGrid. I created a property in the code-behind of my page and want to access it this way.
<telerik:GridBoundColumn [...]>
<FilterTemplate>
<telerik:RadComboBox
ID="filter"
AutoPostBack="false"
AppendDataBoundItems="true"
DataSourceID="<%# PropertyInTheCodeBehind %>"
runat="server" />
[...]
</FilterTemplate>
Or is there another way to accomplish this?
I just want to access data in the code-behind.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
而是定义一个方法或数组并将其传递给组合的 DataSource 属性。这里有几个例子:
Rather define a method or an array and pass it to the DataSource property of the combo. Here are a couple of examples: