Hi,
I've got a question regarding the usage of Request.ServerV ariables.
I'm not sure this is really a ASP question, so redirects to a more
appropriate newsgroup are welcome.
I have a variable that is being passed to me through HTTP headers
called "Test." I am able to see this variable and its value when I use
Request.ServerV ariables("ALL_H TTP"). Additionally, when I iterate
through Request.ServerV ariables using a "For Each key in
Request.ServerV ariables" the key of "Test" comes up. However, when I
use Request.ServerV ariables("Test" ), the value returned to me is
always empty. One workaround thats been suggested by the person
sending me the header is to simply parse the contents of "ALL_HTTP" to
retrieve the data I want. This is doable, but I'm curious to know why
exactly the value of Request.ServerV ariables("Test" ) comes up empty
when I can plainly see there is a value in the "ALL_HTTP" dump?
Thanks in advance!
I've got a question regarding the usage of Request.ServerV ariables.
I'm not sure this is really a ASP question, so redirects to a more
appropriate newsgroup are welcome.
I have a variable that is being passed to me through HTTP headers
called "Test." I am able to see this variable and its value when I use
Request.ServerV ariables("ALL_H TTP"). Additionally, when I iterate
through Request.ServerV ariables using a "For Each key in
Request.ServerV ariables" the key of "Test" comes up. However, when I
use Request.ServerV ariables("Test" ), the value returned to me is
always empty. One workaround thats been suggested by the person
sending me the header is to simply parse the contents of "ALL_HTTP" to
retrieve the data I want. This is doable, but I'm curious to know why
exactly the value of Request.ServerV ariables("Test" ) comes up empty
when I can plainly see there is a value in the "ALL_HTTP" dump?
Thanks in advance!
Comment