hello...
i have a RadioButtonList in my web application which is developing by asp.net 2.0, i just need some help,
Code:
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="true" >
                <asp:ListItem>Month View</asp:ListItem>
                <asp:ListItem>Week View</asp:ListItem>
                <asp:ListItem>Day View</asp:ListItem>
            </asp:RadioButtonList>
when the page loads by default the second item is selected, how can i change this default item?

thanks