|
|
 |
RE: FN-FORUM Server Side Includes
date posted 10th July 2001 14:53
Ecky,
You're a mine of little gems like that - cheers.
Pete
_________________________________________
P e t e r E b d o n
Professional Software Engineering Ltd
Microsoft Certified Professional
Email : [EMAIL REMOVED]
Tel/Fax : +44(0)1235-227279
Mobile : +44(0)7973-178945
Web : www.pseltd.com
-----Original Message-----
From: [EMAIL REMOVED]
[EMAIL REMOVED] Behalf Of David Eckersall
Sent: 10 July 2001 14:36
To: [EMAIL REMOVED]
Subject: Re: FN-FORUM Server Side Includes
yup stephen you can get external files like this over the web:
set objxml=server.CreateObject("microsoft.xmlhttp")
objxml.open "GET", "http://www.domain.com/users/test/counter/counter.asp",
false
objxml.send
output=objxml.responsetext
set objxml=nothing
output now contains the processed url.
you can even post data in this manner - this is useful if you want free
webspace, you can use brinkster to do the processing of data while using
phidji to fire emails :D
if you want to post data you do it slightly different:
set objxml=server.CreateObject("microsoft.xmlhttp")
objxml.open "POST", "http://www.domain.com/users/test/counter/counter.asp",
false
objxml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objxml.send "email="&email&"&namen="&namen
output=objxml.responsetext
set objxml=nothing
the page your opening will act as if its been posted too and will pick up
the form values email and username. damn useful.
hth
dave ecky
----- Original Message -----
From: "Stephen C Parker" [EMAIL REMOVED]
To: "Freelancers" [EMAIL REMOVED]
Sent: Tuesday, July 10, 2001 2:12 PM
Subject: FN-FORUM Server Side Includes
> Freelancers,
>
> I am trying to produce a page that will take information from a
server-side
> include file. Normally these files would be on the server in question and
> would have tags such as:
>
>
>
> However, I wish to use this style on web pages away from our servers, so I
> tried:
>
>
>
> This does not appear to work. Does anyone have any idea how I can get a
> server-side include to reference the file from our servers, even though
the
> web page may be held on servers other than ours?
>
> Sincerely,
>
> Stephen Parker
> http://www.orbinternet.com
>
>
>
> ============================================================
>
> * Free listing for freelancers
> * Free to advertise jobs
> * Free jobs distribution service
> * Free database of 1000 freelancers
>
> Freelancers and Freelance Jobs
> http://www.freelancers.net
>
> To post to the Forum:
> [EMAIL REMOVED]
>
> To unsubscribe please email:
> [EMAIL REMOVED]
>
> If you have difficulties unsubscribing please email:
> [EMAIL REMOVED]
>
> To subscribe to the digest for this list or for further information please
visit:
> http://www.freelancers.net/forum.html
============================================================
* Free listing for freelancers
* Free to advertise jobs
* Free jobs distribution service
* Free database of 1000 freelancers
Freelancers and Freelance Jobs
http://www.freelancers.net
To post to the Forum:
[EMAIL REMOVED]
To unsubscribe please email:
[EMAIL REMOVED]
If you have difficulties unsubscribing please email:
[EMAIL REMOVED]
To subscribe to the digest for this list or for further information please
visit:
http://www.freelancers.net/forum.html
|
 |
|