I have this RadioButtonList, i want when selected value is Yes so user control below shows else it becomes hide in jQuery.
<asp:RadioButtonList ID="RadioButtonList1" runat="server"  RepeatDirection="Horizontal">
    <asp:ListItem Selected="True">No</asp:ListItem>
    <asp:ListItem>Yes</asp:ListItem>
</asp:RadioButtonList>
 
<uc1:question_multifileupload runat="server" ID="question_multifileupload" Visible="false" />