如何使用 javascript 在重定向中添加标头信息..
我认为我这样重定向(不确定)..
window.location.replace('https://anotherWebSite.com');
不,我想向其中添加包含 userID="whatever" 的标头信息,因此当重定向发生时,它将通过此代码对 anotherWebsite.com 可用,例如..
NameValueCollection headers = base.Request.Headers;
for (int i = 0; i < headers.Count; i++)
{
if (headers.GetKey(i).Equals("userID"))
{
_myID = headers.Get(i);
}
}