ラジオ ボタンのリストの値を、ブラウザを閉じるまで JavaScript に保存したい (非永続的な Cookie)。ページがリロードされると、ラジオ ボタンのリストがリセットされます。
<asp:RadioButtonList ID="rblAttachmentType" runat="server" CssClass="radio" RepeatDirection="Horizontal"
ToolTip="Select the type of file you want to upload.">
<asp:ListItem Selected="True" Value="101">Picture</asp:ListItem>
<asp:ListItem Value="102">Floor Plan</asp:ListItem>
<asp:ListItem Value="300">Video</asp:ListItem>
<asp:ListItem Value="200">Document</asp:ListItem>
</asp:RadioButtonList>