asp.net判断checkbox是否选中
??if (Request.Form["chk"] != null){ Response.Write("选中"); }else{ Response.Write("未选中");}?
?
if (Request.Form["chk"] != null){ Response.Write("选中"); }else{ Response.Write("未选中");}