是否可以在选择ObjectDataSource的事件中访问:
protected void odsProduct_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
{
object Control = (((System.Web.UI.DataSourceView)(sender)).Events.head.handler).Target;
}
问题:
'System.Web.UI.DataSourceView.Events'不能在此上下文中使用,因为get访问器是不可访问的
由于其保护级别,“System.Web.UI.DataSourceView.Events”无法访问
在调试器中,我可以看到目标控件及其正确的值。有什么想法吗?