Guest User

Untitled

a guest
Jan 19th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <asp:RadioButtonList ID="rblradio" runat="server">
  2.  
  3. <asp:ListItem Value="M" Text="Male"></asp:ListItem>
  4.  
  5. <asp:ListItem Value="F" Text="Female"></asp:ListItem>
  6.  
  7. </asp:RadioButtonList>
  8.  
  9. function ValidateAccessLevel() {
  10.  
  11. var AccessLevelIndexValue = document.getElementById('<%=rblradio.ClientID%>');
  12.  
  13. if (AccessLevelIndexValue.checked)
  14. {
  15. return false;
  16.  
  17. }
  18.  
  19. else
  20. {
  21. return true;
  22. }
  23. }
  24.  
  25. </script>
  26.  
  27. <asp:RequiredFieldValidator
  28. id="radioValidator
  29. runat="server"
  30. ControlToValidate="rblradio"
  31. Display="Dynamic">
  32. *
  33. </asp:RequiredFieldValidator>
Add Comment
Please, Sign In to add comment