Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of foreach traversal of three data controls: GridView, DataList and DataGrid in ASP.NET

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly shows you the "ASP.NET GridView, DataList, DataGrid three data controls foreach traversal example analysis", the content is easy to understand, clear, hope to help you solve your doubts, the following let Xiaobian lead you to study and learn "GridView, DataList, DataGrid three data controls in ASP.NET foreach traversal example analysis" this article.

The details are as follows:

/ / gridview traversal is as follows: foreach (GridViewRow row in GridView1.Rows) {CheckBox cb = (CheckBox) row.FindControl ("CheckBox2"); if (cb.Checked = = true) {}} / / datagrid traversal: foreach (DataGridItem oItem in ItemsGrid.Items) {CheckBox ck1 = (CheckBox) oItem.FindControl ("CheckBox"); if (ck1.Checked = true) {} / / datalist traversal foreach (DateListItem dl in DataList1.Items) {CheckBox cb = (CheckBox) dl.FindControl ("CheckBoxID") If (cb.checked).}

GridView:

For (int item0; I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report