- Jun 2, 2008
- 163
- 0
- 0
Hello I'm having a issue on how to approach this.
in the page load...........
//*****
foreach (string Item in Request.ServerVariables)
{
Response.Write("<br> " + Item + " = " + Request.ServerVariables + "<br>");
}
//*****
This script allows us to pick up a lot of information but we are only looking for the userID.
for example, say our username is ad101023
every username in the network starts with ad followed by numbers.
if you run the script you can see your username pop up in the webpage. Is there any way to search out the adxxxxxx?
Would I have to do it in a XML file?
ONLY A SELECT FEW people on the network will be allowed to go on the site and I don't want to force them to logon with their credentials again.
in the page load...........
//*****
foreach (string Item in Request.ServerVariables)
{
Response.Write("<br> " + Item + " = " + Request.ServerVariables + "<br>");
}
//*****
This script allows us to pick up a lot of information but we are only looking for the userID.
for example, say our username is ad101023
every username in the network starts with ad followed by numbers.
if you run the script you can see your username pop up in the webpage. Is there any way to search out the adxxxxxx?
Would I have to do it in a XML file?
ONLY A SELECT FEW people on the network will be allowed to go on the site and I don't want to force them to logon with their credentials again.