日期:2014-05-17  浏览次数:21019 次

asp.net判断checkbox是否选中
<input type="checkbox" name="chk" />

?

?

if (Request.Form["chk"] != null)
{
       Response.Write("选中");
 }
else
{
       Response.Write("未选中");
}

?