使用标题信息Javascript重定向到网址

时间:2012-10-10 20:29:52

标签: javascript asp.net

  

可能重复:
  Javascript redirect with headers or session id

如何使用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);
                }


            }

1 个答案:

答案 0 :(得分:0)

我不知道有任何方法可以将响应标头附加到JavaScript重定向,但您可以将数据附加到查询字符串:

window.location.replace('https://anotherWebSite.com?user=[USERNAME]');