RadioButtonList的AutoPostBack属性为True;RadioButtonList的SelectedIndexChanged事件:
ViewState.Add('RadioSel',RadioButtonList1.SelectedValue);然后在Page_OnLoad中
RadioButtonList1.SelectedValue:=ViewState['RadioSel'].ToString();这样为什么不行?
就第一次点击后好像是正确的,然后随便怎么切换选项总是默认选择到之前的那个...
而不是根据我实际点选的...