HTML
<input type="checkbox" id="IsChildGroup" name="IsChildGroup" value="true" <%If bIsChildGroup Then%>checked<%End If%>/>包含子团队
ASP
If Request.QueryString.Count = 0 Then bIsChildGroup = True Else If Request("IsChildGroup") & "" = "true" Then bIsChildGroup = True Else bIsChildGroup = False End If End If
时间: 2025-01-07 19:28:54