1. <cfparam name="Attributes.FieldName" type="string">
  2. <cfparam name="Attributes.Size" type="numeric">
  3. <cfparam name="Attributes.MaxLength" type="numeric">
  4. <cfparam name="Attributes.Label" type="string" default="#Attributes.FieldName#">
  5. <cfassociate basetag="CF_INTELLIGENTFORM">
  6. <cfset ParentData = GetBaseTagData("CF_INTELLIGENTFORM")>
  7. <!--- <cfdump var="#ParentData#" label="ParentData as seen by #Attributes.FieldName#"> --->
  8. <cfoutput>
  9. <tr>
  10.     <td>#Attributes.Label#&nbsp;&nbsp;</td>
  11.     <td>
  12.         <input
  13.             type="text"
  14.             name="#Attributes.FieldName#"
  15.             size="#Attributes.Size#"
  16.             maxlength="#Attributes.Maxlength#"
  17.             style="#ParentData.Attributes.InputStyle#">
  18.     </td>
  19. </tr>
  20. </cfoutput>