Name Property
Contains name of the associated HTML-form element.
Value Type: | String | |
Parameters: | None | |
Remarks: | This property is read-only |
Usage example:
' This sample writes the names 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.Name
Response.Write ";"
Next
End If %>
See Also:
Value Property | FormElements Collection | FormFiles Collection | FormElement Object | FormFile Object | Uploader Object
Copyright © 2002-2024, AfterLogic Corporation. All rights reserved.