Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在运行时创建了一个 DATALIST 并在 dalalist itemtemplate 中加载了 Webuser 控件。如何在回发后获取运行时生成的 datalist.datalist 下所有控件的值,使其为空并重新创建。如何获取价值?
在databound事件中,我们在运行时datalist获得任何字段的值。datalist
databound
datalist
DataList 有一个 Items 属性;您可以遍历它,这是绑定到列表的项目的集合,并获取您需要的值。要获取各个控件,请使用:
item.FindControl("ID")
将它们提取出来。