Value Property


Contains value of the associated HTML-form element (content of the data field, or value of such elements as 'select', etc.). In case of multiple element values are comma separated.


Value Type: String
Parameters: None 
Remarks: This property is read-only

Usage example:

' This sample writes the values of all HTML-form elements in the collection

<% Set Uploader = Server.CreateObject("MailBee.Uploader")
Uploader.ParseRequest Request.BinaryRead(Request.TotalBytes)
If (Uploader.FormElements.Count <> 0) Then 
   For Each Element in Uploader.FormElements 
      Response.Write Element.Value
      Response.Write "|"
   Next
End If %>

See Also:

Name Property | FormElements Collection | FormFiles Collection | FormElement Object | FormFile Object | Uploader Object


Copyright © 2002-2022, AfterLogic Corporation. All rights reserved.