Re: HTTP GET - VBscript help?
- From: "McKirahan" <News@xxxxxxxxxxxxx>
- Date: Sun, 19 Mar 2006 08:12:55 -0600
"SIMON GARE" <sg@xxxxxxxxxxxxx> wrote in message
news:e5pgsp1SGHA.4264@xxxxxxxxxxxxxxxxxxxxxxx
Hithey
I have a service provider that's sends sms messages from clients mobile
phones to my asp page, problem is I don't know how to show the data and
are not being helpful.provider)
The process is simple as outlined below (instructions from service
we
Example: If you provide this: http://www.yourdomain.com/sms/sms.asp then
will do a posthttp://www.yourdomain.com/sms/sms.asp?api_id=xxx&from=xxx&to=mo_number_here&
via a standard HTTP GET as follow:
timest
service
amp=2005-01-06+12:32:10&text=xxx&charset=ISO-8859-1&udh=
How do i receive the url with the parameters in the address bar? the
provider wont help anymore
Thanks in advance
Do you just want the QueryString; that is,
everything after the "sms.asp"?
api_id=xxx
from=xxx
to=mo_number_here
timestamp=2005-01-06+12:32:10
text=xxx
charset=ISO-8859-1
udh=
If so then use to retrieve it all (after the "?"):
Request.QueryString()
If the parameter names don't change then you can use:
Request.QueryString("api_id")
Request.QueryString("from")
Request.QueryString("to")
Request.QueryString("timestamp")
Request.QueryString("text")
Request.QueryString("charset")
Request.QueryString("udh")
The above applies as VBScript within your ASP page.
Passing "mo_number_here" doesn't really make sense...
.
- References:
- HTTP GET - VBscript help?
- From: SIMON GARE
- HTTP GET - VBscript help?
- Prev by Date: TAPI Caller line identification
- Next by Date: Re: Is it possible to export function / global variables from a vbs script file?
- Previous by thread: HTTP GET - VBscript help?
- Next by thread: TAPI Caller line identification
- Index(es):
Relevant Pages
|