主頁(yè) > 知識(shí)庫(kù) > 獲取DataList控件的主鍵和索引實(shí)用圖解

獲取DataList控件的主鍵和索引實(shí)用圖解

熱門(mén)標(biāo)簽:合肥電銷(xiāo)外呼系統(tǒng)哪家公司做的好 同安公安400電話怎么申請(qǐng)流程 電話機(jī)器人軟件銷(xiāo)售工作 申請(qǐng)400電話手續(xù) 百度ai地圖標(biāo)注 南陽(yáng)外呼系統(tǒng)定制化 玉林市機(jī)器人外呼系統(tǒng)哪家好 蘋(píng)果手機(jī)凱立德地圖標(biāo)注 預(yù)測(cè)式外呼系統(tǒng)使用說(shuō)明
“哈哈,看了這篇https://www.jb51.net/article/33388.htm,只有效果,但沒(méi)有結(jié)果,我怎樣獲取選擇行的相關(guān)記錄?”

Insus.NET首先多謝網(wǎng)友對(duì)上面那篇博文的關(guān)注。解決你的問(wèn)題,可以嘗試獲取選擇行的索引或是主鍵即可,能獲取到主鍵,其它字段的值,也可以獲取到了。

下圖中,高亮選擇區(qū),即是針對(duì)問(wèn)題解決而在原在代碼添加的部分。一是在DataList控件添加一個(gè)DataKeyField,以便獲取到它的主鍵值,另外還添加了兩個(gè)銨鈕及一個(gè)Label標(biāo)答,用來(lái)顯示選擇結(jié)果,真正將來(lái)你也許用不上標(biāo)簽,因?yàn)楂@取到結(jié)果之后,就可以進(jìn)行你想的要事情了。

兩個(gè)銨鈕事件,都是很簡(jiǎn)單,Insus.NET相信你能看得懂,如果遇上不明,可以討論:
復(fù)制代碼 代碼如下:

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("你執(zhí)行銨鈕'{0}',選擇行的索引是:{1}; 主鍵值是:{2}", button.Text, dli.ItemIndex.ToString(), dlconstellation.DataKeys[dli.ItemIndex].ToString());
break;
}
else
{
LabelSelectedResult.Text = string.Format("你執(zhí)行銨鈕'{0}',沒(méi)有選擇任何一行。", 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("你執(zhí)行銨鈕'{0}',選擇行的索引是:{1}; 主鍵值是:{2}", button.Text, i.ToString(), dlconstellation.DataKeys[i].ToString());
break;
}
else
{
LabelSelectedResult.Text = string.Format("你執(zhí)行銨鈕'{0}',沒(méi)有選擇任何一行。", button.Text);
}
}
}
您可能感興趣的文章:
  • 通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明
  • 動(dòng)態(tài)加載用戶(hù)控件至DataList并為用戶(hù)控件賦值實(shí)例演示
  • Datalist控件使用存儲(chǔ)過(guò)程來(lái)分頁(yè)實(shí)現(xiàn)代碼
  • asp.net datalist 用法
  • DataList中TextBox onfocus調(diào)用后臺(tái)void靜態(tài)方法及獲取相應(yīng)行數(shù)

標(biāo)簽:揚(yáng)州 南京 淄博 嘉興 臺(tái)州 南昌 海南 南京

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《獲取DataList控件的主鍵和索引實(shí)用圖解》,本文關(guān)鍵詞  獲取,DataList,控件,的,主鍵,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《獲取DataList控件的主鍵和索引實(shí)用圖解》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于獲取DataList控件的主鍵和索引實(shí)用圖解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章