2013-08-23 59 views
0

我想用一個數據列表視圖與多個選擇單選按鈕,所以如何讓每個問題的答案或檢查列表中的單選按鈕值的問題?從數據列表中檢查單選按鈕值?

+1

已經有此主題的這麼多問題的SO。你有沒有研究過他們發佈之前,如果有的話,你的問題有什麼不同。 – ckv

回答

0

enter image description here

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; 
       } 
      } 
     } 

試試這個,讓我知道

相關問題