| View previous topic :: View next topic |
| Author |
Message |
Cereal
Joined: 17 Mar 2007 Posts: 45 Location: San Antonio, TX
|
Posted: Thu Mar 29, 2007 2:53 pm Post subject: q about searchURL and var's |
|
|
IM trying to send the user name in %smterm% and its working but for some reason its putting it at the end as well and ideas why? | Code: | If ssUserID = 1
searchURL = https://support.centurytel.net/supporttools/index.cfm?action=ensemble_lookup&customeruserid=%smterm%&requesttimeout=200
|
|
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Thu Mar 29, 2007 3:04 pm Post subject: |
|
|
| Quote: | | its putting it at the end | Of what? The world? Can't see anything like that, even at your sample 'code'. Can you be more specific and/or provide some more code? Thx. |
|
| Back to top |
|
 |
Cereal
Joined: 17 Mar 2007 Posts: 45 Location: San Antonio, TX
|
Posted: Thu Mar 29, 2007 3:22 pm Post subject: |
|
|
the var is %smterm% which the user puts into a serach field then hits search and what not, brings up ie find and replaces the var but instead of getting
support.centurytel.net/supporttools/index.cfm?action=ensemble_lookup&customeruserid=USERNAME&requesttimeout=200
i get
support.centurytel.net/supporttools/index.cfm?action=ensemble_lookup&customeruserid=USERNAME&requesttimeout=200USERNAME
| Code: |
{
If ssUserID = 1
searchURL = https://support.centurytel.net/supporttools/index.cfm?action=ensemble_lookup&customeruserid=%smterm%&requesttimeout=200
If ssPHONE = 1
searchURL = http://atom.x25.net/tracker/gobetween.plx?searchby=phone&submit=Search&looky=
}
{
If ssLNAME = 1
searchURL = http://atom.x25.net/tracker/gobetween.plx?searchby=lname&submit=Search&looky=
}
{
If ssTICKET = 1
searchURL = http://atom.x25.net/tracker/gobetween.plx?searchby=ticket&submit=Search&looky=
} |
|
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 2951 Location: Minnesota
|
Posted: Fri Mar 30, 2007 1:32 am Post subject: |
|
|
| There's nothing there that would cause that problem. There's most likely something else further on in the code that's concatenating it to searchURL. |
|
| Back to top |
|
 |
|