<input type="checkbox" name="chk" />
?
?
if (Request.Form["chk"] != null)
{
Response.Write("选中");
}
else
{
Response.Write("未选中");
}
?
<input type="checkbox" name="chk" />
?
?
if (Request.Form["chk"] != null)
{
Response.Write("选中");
}
else
{
Response.Write("未选中");
}
?