Kuriyama
08-28-2008, 03:06 PM
<%
if Request("submit") <> "" then
Response.Addheader "test", "tesasdft"
end if
strtest = Request.ServerVariables("HTTP_test")
Response.write strTest
%>
I'm attempting to add a header to my page. I can see the header that I have added use firebug, but I'm unable to write the header to the page. Any ideas?
if Request("submit") <> "" then
Response.Addheader "test", "tesasdft"
end if
strtest = Request.ServerVariables("HTTP_test")
Response.write strTest
%>
I'm attempting to add a header to my page. I can see the header that I have added use firebug, but I'm unable to write the header to the page. Any ideas?