This property is the name of the placeholder.
strName = Placeholder.Name
For more information, see Name.
The following code example generates an HTML form element from a placeholder. The generated form name is based on the placeholder name to make subsequent processing easier:
<%
Dim pPlaceholders, pPlaceholder
Set pPlaceholders = Autosession.ThisPosting.Placeholders
Set pPlaceholder = pPlaceholders.Item(0)
%>
<TEXTAREA name="NCPH_<%= pPlaceholder.Name %>">
<%=Server.HTMLEncode(pPlaceholder.HTML)%>
</TEXTAREA>
Reference
Placeholder.HTML Property