服务器之家

服务器之家 > 正文

获取DataList控件的主键和索引实用图解

时间:2019-10-17 10:47     来源/作者:cnblogs

“哈哈,看了这篇http://www.zzvips.com/article/19679.html,只有效果,但没有结果,我怎样获取选择行的相关记录?” 

Insus.NET首先多谢网友对上面那篇博文的关注。解决你的问题,可以尝试获取选择行的索引或是主键即可,能获取到主键,其它字段的值,也可以获取到了。 

下图中,高亮选择区,即是针对问题解决而在原在代码添加的部分。一是在DataList控件添加一个DataKeyField,以便获取到它的主键值,另外还添加了两个铵钮及一个Label标答,用来显示选择结果,真正将来你也许用不上标签,因为获取到结果之后,就可以进行你想的要事情了。 
获取DataList控件的主键和索引实用图解
两个铵钮事件,都是很简单,Insus.NET相信你能看得懂,如果遇上不明,可以讨论: 

复制代码代码如下:


View Code 
protected void Button1_Click(object sender, EventArgs e) 

Button button = (Button)sender; 
if (FindControl("DataListConstellation") == null) return; 
DataList dlconstellation = (DataList)FindControl("DataListConstellation"); 
foreach (DataListItem dli in dlconstellation.Items) 

if (dli.FindControl("RadioButtonSelect") == null) return; 
RadioButton rb = (RadioButton)dli.FindControl("RadioButtonSelect"); 
if (rb.Checked) 

LabelSelectedResult.Text = string.Format("你执行铵钮'{0}',选择行的索引是:{1}; 主键值是:{2}", button.Text, dli.ItemIndex.ToString(), dlconstellation.DataKeys[dli.ItemIndex].ToString()); 
break; 

else 

LabelSelectedResult.Text = string.Format("你执行铵钮'{0}',没有选择任何一行。", button.Text); 



protected void Button2_Click(object sender, EventArgs e) 

Button button = (Button)sender; 
DataList dlconstellation = (DataList)FindControl("DataListConstellation"); 
for (int i = 0; i < dlconstellation.Items.Count; i++) 

RadioButton rb = (RadioButton)dlconstellation.Items[i].FindControl("RadioButtonSelect"); 
if (rb.Checked) 

LabelSelectedResult.Text = string.Format("你执行铵钮'{0}',选择行的索引是:{1}; 主键值是:{2}", button.Text, i.ToString(), dlconstellation.DataKeys[i].ToString()); 
break; 

else 

LabelSelectedResult.Text = string.Format("你执行铵钮'{0}',没有选择任何一行。", button.Text); 


标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部