Count

          Property, read only 
          Member of  ScriptUtils.FormFields 

Description
Number of fields in the collection.
Syntax
vCount = FormFields.Count ([Index as Variant = All form fields])
 
Where Type Optional Default Description
 Index  Variant  yes  All form fields  Field name or index. 
Returns
Long
Remarks
Returns a number of all fields in this collection if Index is not specified.
Returns a number of fields specified by Index from FormFields collection either by position or by key.
Examples
 Upload - Count number of source fields with a specified name  
<%
'Sample file Fields-Count.asp 
' Sample for Count property

Dim Form: Set Form = Server.CreateObject("ScriptUtils.ASPForm")

'was the Form successfully received?
If Form.State = 0 Then
  Dim Field, Index

  Response.Write "<br>Count of Check1:" & Form.Items.Count("Check1")
  Response.Write "<br>Count of Check2:" & Form.Items.Count("Check2")
  Response.Write "<br>Count of Check3:" & Form.Items.Count("Check3")
  Response.Write "<br>Count of Select field:" & Form.Items.Count("Select field")

  Response.Write "<br>"
  Response.Write "<br>Count of file fields:" & Form.Files.Count
  Response.Write "<br>Count of text fields:" & Form.Texts.Count

  Response.Write "<br>"
  Response.Write "<br>Count of field no.1:" & Form.Items.Count(1)
  Response.Write "<br>Count of field no.28:" & Form.Items.Count(28)
End If'Form.State = 0 then

%>  
<br>sample For <A Href=http://www.motobit.com>HugeASP upload</A>
<br>Sample For Count property
<form name="file_upload" method="POST" ENCTYPE="multipart/form-data" >
<input Name=SourceFile2 Type=File><br>
<input Name=Description1><br>
<input Type=CheckBox Checked Name=Check1>Check 1<br>
<input Type=CheckBox Checked Name=Check1>Check 1<br>
<input Type=CheckBox Checked Name=Check2>Check 2<br>
<SELECT NAME="Select field" MULTIPLE>
  <OPTION VALUE="Option 1" SELECTED>Option 1
  <OPTION VALUE="Option 2" SELECTED>Option 2
  <OPTION VALUE="Option 3" SELECTED>Option 3
  <OPTION VALUE="Option 4">Option 4
</SELECT><br>
<input Name=SubmitButton Value="Submit >>" Type=Submit><br>
</Form>


Count of Check1:2
Count of Check2:1
Count of Check3:0
Count of Select field:3

Count of file fields:1
Count of text fields:8

Count of field no.1:1
Count of field no.28:0
See also
  Other links for Count
Methods of FormFields class
Properties of FormFields class
Contains collection of document fields of files.
      Easy to use, hi-performance ASP file upload component with progress bar indicator. Let's you upload multiple files with size up to 2GB to a disk or database along with another form fields. Works with large posts, any character set (including unicode utf-8). Contains one-click multiple files/folders download with on-the-fly compression (Using BinaryWrite/BinaryRead).
      Hi-performance text file logging for ASP/VBScript/VBA applications. Lets you create daily/weekly/monthly log files with variable number of logged values and extra timing and performance info.
       Lets you work with safearray binary data in VBS/JS. It also enables conversion between binary and String data using several code pages. ZLib compress and uncompress functions. Lets you transfer files using compressed stream from a client to server using IE.
      This library also enables calling of some Kernel and Advapi functions (performance, timing, sleep, configuration ...) and enables native work with INI files.


© 1996 – 2005 Motobit Software, help{at}pstruh.cz, help v. 2.16.14