Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Toggle header in the asp.page.

Status
Not open for further replies.

lcky

Programmer
Sep 29, 2005
30
GB
Hi

I have two domain name

I have a website, made of asp pages. I have a unique header (asp.page) for a website A, ie ' which is included into every asp page.

I have created another hearder for website B, ie
What I would like to do is, I would like to toggle this header according to which website user enter into the browser. ie If user enter then display header A, else header B.

Please could you advice me, how I go achiving this.

many thank
 
Howdy Icky,

I haven't checked out the code to make sure it works, I just typed it in. But I think something like this would work.

Code:
<%
If Request.ServerVariables("SERVER_NAME") = "[URL unfurl="true"]www.A.co.uk"[/URL] Then
%>
<!-- #include file="AHeader.asp" -->
<%
Else
%>
<!-- #include file="BHeader.asp" -->
<%
End If
%>
ksbigfoot
 
Make a small test page that allows you to examine the Request.ServerVariables collection. You will probably find the answer within this group of values.

The test page should look something like this:
Code:
<%
For Each Foo in Request.ServerVariables
  Response.Write Foo & " = " & Request.ServerVariables(Foo)
  Response.Write "<BR>" & vbCrLf
Next
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top