radiobuttonlist问题
麻烦我想问一下radiobuttonlist的相关问题,如下图,我的问题是这样的,我想达到这样的效果,如果我在选择"111"后,刷新页面后选项是“111”如果我在选择"222"后,刷新页面后选项是“222”。如果现在不做任何处理的话,默认选项是第一项,刷新后仍然为第一项,而不是我我选择后的项(如222)
你的意思是点击222后从新打开一个页面,要求这个下拉框是222被选中?这个是2个不同页面的传值问题,可以用SESSION来解决。
在selectedindexchanged增加代码:
session("index")="RadioButtonList1".selectedIndex
在新的页面增加代码
if not session("index") is nothing then
"RadioButtonList1".selectedIndex=-1(先清除选择,再重新选择)
"RadioButtonList1".selectedIndex=Ctype(session("index"),integer)
session("index")=nothing
end if
试看看