1

What is the syntax to include hidden field in HTML Template Language (HTL)?

In jsp we can write

<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
surendrapanday
  • 770
  • 2
  • 9
  • 24
  • 1
    I am not sure I understand the question. You just add `` to your HTL file and that's it. Just like with JSPs. – Jens Jul 25 '17 at 14:29

1 Answers1

1

You would do the exact same thing in HTL.

<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
Jordan Shurmer
  • 946
  • 7
  • 21