VariableCollection.VarEncodedName Property

This method was deprecated in HotDocs Server 11.

[Read-only] This property returns the URL-encoded name HotDocs Server uses in the interview.

Syntax

EncodedName (index)

Parameter Description
long index The index into the VariableCollection of the variable.

Example

' This example opens a variable collection and lists each variable's name and encoded name.
 
dim vc
Set vc = Server.CreateObject ("HotDocs_Online.VariableCollection")
vc.Open "c:\InetPub\wwwroot\templates\template.hvc"
 
for i = 0 to (vc.Count -1)
    Response.Write "Name: " & vc.VarName(i) & "<br>"
    Response.Write "Encoded Name: " & vc.VarEncodedName(i) & "<hr>"
next