html hidden text

C#
   <input type="hidden" id="custId" name="custId" 
  value="3487"> <!-- stops an element from rendering, but still loads it to memory-->
<p>this will show</p>
<p hidden>Thill will not show</p>
Source

Also in C#: