Friends i am facing some problem if some body know the solotion
i will be gratefull to him/her
the problem is, i want to add a custom header such like
Response.AddHeader "MyHeader", "ERROR"
and then redirect the page to showheader.asp like
Response.Redirect "showheader.asp"
now when i want to get it back on the other page but
coul't get it, i am using the following code in showheader.asp page
"
Dim strTemp
strTemp=Request.ServerVariables("HTTP_MyHeader")
Response.Write strTemp
"
but fail to get the header.
the question is how i can get the custom header back from other page?