hello all
I have made a master page along with a content page
i have some radio buttons and with these radio buttons i want to be able to switch style sheets
 
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" runat="server">
        <div id="btnRadio">
            <asp:RadioButtonList ID="themes" runat="server" RepeatDirection="Horizontal" AutoPostBack="true" OnSelectedIndexChanged="themes_SelectedIndexChanged" >
                <asp:ListItem Text="Theme1"></asp:ListItem>
                <asp:ListItem>Theme2</asp:ListItem>
            </asp:RadioButtonList>
            <asp:RadioButtonList ID="masters" runat="server" RepeatDirection="Horizontal" AutoPostBack="true" OnSelectedIndexChanged="masters_SelectedIndexChanged">
                <asp:ListItem>Master1</asp:ListItem>
                <asp:ListItem>Master2</asp:ListItem>
            </asp:RadioButtonList>
        </div>
</asp:Content>
in my master page i have this
 
<head runat="server">
    <title>Welcome</title>
    <link href="Styles/welcomeStyle.css" rel="stylesheet" type="text/css" media="all" id="stylesheet" />
</head>