GridView嵌套CheckBox实现复选:
需AUTOPOSTBACK=TRUE;或者使用UpdatePanel实现无刷新执行
GridView嵌套RadionButton实现单选:
此处应打破常规思路,不使用RadionButton而选用input
后台取选定值:
string strDriverValue = Request.Form["rbnDriver"];
GridView嵌套CheckBox实现复选:
需AUTOPOSTBACK=TRUE;或者使用UpdatePanel实现无刷新执行
GridView嵌套RadionButton实现单选:
此处应打破常规思路,不使用RadionButton而选用input
后台取选定值:
string strDriverValue = Request.Form["rbnDriver"];