Cómo obtener todos los RedoButtons y mostrar el valor del RedoButton seleccionado actualmente
Autor:Eve ColeFecha de actualización:2010-07-14 09:29:20
问: 如何获取所有RedioButton并弹出当前被选中是RedioButton的值
答: foreach (var c en Page.Form.Controls) { si (c es botón de radio) { RadioButton btn = c como RadioButton; si (btn.marcado) { Respuesta.Escribir(btn.Texto); } } }