| <%= C.Properties(Item).Name %> | <% ' Print something so that the table border gets displayed If IsEmpty(C.Properties(Item)) Then Response.Write " " ' Determine if the property is a Boolean ElseIf VarType(C.Properties(Item)) = 11 Then Response.Write CStr(CBool(C.Properties(Item))) Else Response.Write C.Properties(Item) End If %> |
| <%=RS.Properties(Item).Name%> | <% ' Determine if the property is a Boolean If VarType(RS.Properties(Item)) = 11 Then Response.Write CStr(CBool(RS.Properties(Item))) Else Response.Write RS.Properties(Item) End If %> |
| Browser Type | <%= bc.Browser %> |
| What Version | <%= bc.Version %> |
| Major Version | <%= bc.Majorver %> |
| Minor Version | <%= bc.Minorver %> |
| Frames | <%= CStr(CBool(bc.Frames)) %> |
| Tables | <%= CStr(CBool(bc.Tables)) %> |
| Cookies | <%= CStr(CBool(bc.cookies)) %> |
| Background Sounds | <%= CStr(CBool(bc.BackgroundSounds)) %> |
| VBScript | <%= CStr(CBool(bc.VBScript)) %> |
| JavaScript | <%= CStr(CBool(bc.Javascript)) %> |