gpt4 book ai didi

c# - 任何人都不应更改单选按钮选择

转载 作者:太空宇宙 更新时间:2023-11-03 21:55:13 26 4
gpt4 key购买 nike

我在 C# 的 aspx 页面中制作了一个单选按钮列表

<asp:RadioButtonList ID="RblMentor_teacher_student" class="case"  runat="server"
RepeatDirection="Horizontal" AppendDataBoundItems="False" >
<asp:ListItem Text="Docent" Value="0"></asp:ListItem>
<asp:ListItem Text="Mentor" Value="1"></asp:ListItem>
<asp:ListItem Text="Student" Value="2"></asp:ListItem>
</asp:RadioButtonList>

如我所愿,它完美地显示了所选人员是教师、学生或导师。

但我希望没有人可以改变这个选择。

谁能帮忙。

最佳答案

您可以将它放在您的 Page_load() 中,它会禁用整个列表。

RblMentor_teacher_student.Enabled = false;  

或者您可以禁用特定的列表项

<asp:ListItem Text="Docent" Value="0" Disabled="Disabled"></asp:ListItem>

关于c# - 任何人都不应更改单选按钮选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12581312/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com