Does anyone know if its possible to send out custom http REQUEST headers in HTML without having to use javascript (no xhr wrapper).
Would it be possible to define them as meta tags within the head? Or may they be defined in the form somewhere?
<meta http-equip="x-something-custom" name="custom value" />
this works, however, this is a RESPONSE header. What I need to set a REQUEST header.
I'm not looking for setting hidden fields in forms, but actual raw http header manipulation with html tags.
Is this possible?