Custom HTTP Request headers in HTML
        Posted  
        
            by matsko
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by matsko
        
        
        
        Published on 2010-06-15T17:58:42Z
        Indexed on 
            2010/06/15
            18:02 UTC
        
        
        Read the original article
        Hit count: 340
        
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?
© Stack Overflow or respective owner