Como obter todos os RedoButtons e exibir o valor do RedoButton atualmente selecionado
Autor:Eve ColeData da Última Atualização:2010-07-14 09:29:20
问: 如何获取所有RedioButton并弹出当前被选中是RedioButton的值
答: foreach (var c em Page.Form.Controls) { if (c é RadioButton) { RadioButton btn = c como RadioButton; if (btn. Verificado) { Response.Write(btn.Texto); } } }