is it possible to assign a value to a ServerVariable("Something") using the code? instead of doing it via the IIS?
something as simple as this?
Request.ServerVariables("LOGON_USER")="test"
i also found the following at another forum:
Request.ServerVaria bles.Add(name, value)
but i keep getting the same error on both: "Declaration Expected"
some background:
i am trying to do is pass in the ("LOGON_USER") variable from one applicaton to another (on a different domain), to somehow allow for single sign on. I now pass hidden variables to the new server and then want to assign them to proper servervariables. would I then need to edit response or request? am i waaay off on this?