Advertisement

10.01.2008 at 05:01AM PDT, ID: 23777616 | Points: 500
[x]
Attachment Details

including page

Asked by Sasha-N in Active Server Pages (ASP), Web Languages/Standards

Tags:

my host gave me that code as an example of how to control all my domains and urls.
that file is in the webroot folder.
i have 3 websites, each one of them is in diffrent folder-
so, my the webroot folder looks like this:
index.asp (this redirect file)
site1 (folder)
site2 (folder)
site3 (folder)

when i try to include like this:
          Case "www.mydomain.com"
                    %><!-- #Include File="site1/page4.asp" --><%
i got only the html of the page...all the images and the link are broken...

what can i do?
Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
<%@Language=VBScript%>
 
<%
 
SiteNameURL =  Request.ServerVariables("SERVER_NAME") 
 
 
 
Select Case SiteNameURL
 
          Case "yourdomain.com"
 
                    %><!-- #Include File="page1.asp" --><%
 
 
 
          Case "www.yourdomain.com"
 
                    %><!-- #Include File="page1.asp" --><%
 
 
 
          Case "yourotherdomain.com"
 
                    %><!-- #Include File="page2.asp" --><%
 
 
 
          Case "www.yourotherdomain.com"
 
                    %><!-- #Include File="page2.asp" --><%
 
 
 
          Case "subdomain1.yourdomain.com"
 
                    %><!-- #Include File="page3.asp" --><%
 
 
 
          Case "subdomain2.yourdomain.com"
 
                    %><!-- #Include File="page4.asp" --><%
 
 
 
          Case Else 'redirecting everything other than cases selected above
 
                    %><!-- #Include File="other.asp" --><%
 
End Select
 
%>
[+][-]10.01.2008 at 05:59AM PDT, ID: 22613705

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.01.2008 at 06:05AM PDT, ID: 22613767

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.01.2008 at 06:09AM PDT, ID: 22613803

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 - Hierarchy / EE_QW_2_20070628