How do i pass headers when specifying a location with window.location.href
HI,
Currently i am on a html page which has an submit button. And when that button is clicked the user goes to the url :
url?validation=...& etc
This is achived by setting a on click listener on submit button and executing : window.location.href =url?validation=...
How do i achive the same if i want to pass this validation in the headers... Is there any way i can specify headers with window.location.href ??
OR any alternative way to achive the same using javascript etc.
i mean the actual headers. the way we specify headers in an ajax call. but i think ajax call wont transfer me to another page it will just take a request and will get the response in the callback.
my aim is to actually to transfer the user to another page. but the validationID etc fields dont seem right in the query parameters logically. Although i do achieve what i want to achieve using location.href ... that is transfer the user to other page and i embed this validationId in the resulting page
Can you give me an example of how you would do this with AJAX - just want to make sure I understand exactly what you are asking.
Why do you need to embed information in the header - there is scope for this in some applications but the usual method of data transfer is in the URL (parameters retrieved with a GET) or as POST data. Why specifically do you need to modify the headers
my aim is to actually to transfer the user to another page. but the validationID etc fields dont seem right in the query parameters logically. Although i do achieve what i want to achieve using location.href ... that is transfer the user to other page and i embed this validationId in the resulting page