我在中繼器內有單選按鈕列表。我正在顯示這個樣子的截圖。在轉發器的頭模板中有列標題。在項目模板中,我有4個字段/列。第三個字段是一個單選按鈕列表。例如,如果我選擇「測試任務2」行中的「是」單選按鈕 - 我需要回發並保存該記錄的值(返回到數據庫)。我的轉發器可能會顯示許多行和單選按鈕列表。從中繼器中的單選按鈕獲取選定的單選按鈕列表值
1
A
回答
3
試試這個
protected void btnSave_Click(object sender, EventArgs e)
{
foreach (RepeaterItem item in Repeater1.Items)
{
// Checking the item is a data item
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
var rdbList = item.FindControl("RadioButtonList1") as RadioButtonList;
// Get the selected value
string selected = rdbList.SelectedValue;
}
}
}
0
if (Repeater1.Items.Count > 0)
{
for (int count = 0; count < Repeater1.Items.Count; count++)
{
RadioButton rd1 = (RadioButton)Repeater1.Items[count].FindControl("ID1");
RadioButton rd2 = (RadioButton)Repeater1.Items[count].FindControl("ID2");
RadioButton rd3 = (RadioButton)Repeater1.Items[count].FindControl("ID3");
if (rd1.Checked)
{
}
if (rd2.Checked)
{
}
if (rd3.Checked)
{
}
}
}
0
我已經使用在GridView中這樣的事情,希望這可以幫助你 讓我們考慮一下,我們有2個按鈕
<asp:RadioButton ID="rb_Yes" runat="server" GroupName="GpName" Text="Yes" OnCheckedChanged="rb_Yes_Click" AutoPostBack="true" />
<asp:RadioButton ID="rb_No" runat="server" GroupName="GpName" Text="No" OnCheckedChanged="rb_No_Click" AutoPostBack="true"/>
只需使用後的oncheckedChanged事件回 和在.cs頁使用代碼這樣的事我肯定這可以幫助你
protected void rb_Yes_Click(object sender, EventArgs e)
{
RadioButton rb_Yes = (RadioButton)sender;
GridViewRow grid_row = (GridViewRow)rb_Yes.NamingContainer;
if(((RadioButton)grid_row.FindControl("rb_Yes")).Checked==true)
{
//Action that you want to implement
}
}
希望這可以幫助你
相關問題
- 1. 獲取選中單選按鈕的值
- 2. 獲取單選按鈕的選定值
- 3. 從div中的單選按鈕獲取選定的單選按鈕?
- 4. 如何獲取jquery中單選按鈕列表的選定值?
- 5. Flash單選按鈕:如何獲取選定的單選按鈕?
- 6. 單選按鈕中的單選按鈕
- 7. 從jquery中獲取選定的單選按鈕的文本值
- 8. 沒有正確獲取單選按鈕中的單選按鈕
- 9. 獲取所選單選按鈕的值
- 10. 獲取單選按鈕列表的選定值
- 11. 如何從php中獲取選定的單選按鈕值onclick
- 12. 如何在asp.net中獲取選定的單選按鈕列表?
- 13. 如何從expressjs中獲取表單中選定的單選按鈕值?
- 14. 單選按鈕的jquery中獲取單選按鈕的選中狀態ID
- 15. 如何凍結asp.net中選定單選按鈕的單選按鈕列表?
- 16. 讀取單選按鈕列表的值
- 17. 在選擇列表中獲取單選按鈕值
- 18. 綁定表中的單選按鈕值
- 19. 從選定的單選按鈕中選擇下一個單選按鈕
- 20. 獲取單選按鈕值選中或取消選中jQuery中
- 21. 獲取所選單選按鈕值
- 22. 如何從android中的五個單選按鈕獲取選定的單選按鈕值?
- 23. 如何比較單選按鈕列表中選定值的值
- 24. 單擊按鈕時獲取所選單選按鈕的編號
- 25. 限制中繼器兩列中的單選按鈕選擇
- 26. 選中的單選按鈕
- 27. 從單選按鈕獲取值select 2
- 28. 無法從單選按鈕獲取值
- 29. ASP淨中繼單選按鈕組的名稱,並得到單選按鈕值
- 30. 在android中獲取oncheckedchanged之外的選定單選按鈕值?
是獨立的單選按鈕爲Yes,No和N/A此單選按鈕列表? –
是,否和N/A是ListItem作爲一個Radion Button List的一部分。 – obautista