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!

Troubles with passing parameters through strings...

Status
Not open for further replies.

Frank123

MIS
Sep 17, 2001
77
US
I'm pretty sure that my problem lies with single and double quotes. My line of code is the following:
='<center><a href=&quot;Hardware.asp?ssi=' + [System_Site_ID] + 'site= '+ [site] + '&quot;>Hardware</a></center>'

I'm trying to pass 2 different variable from a database. I can pass one variable with the following line:
='<center><a href=&quot;Interfaces.asp?ssi=' + [System_Site_ID] + '&quot;>Interfaces</a></center>'

If someone could clear this up for me, or give me an example I'd appreciate it. thanks



 
Hi,

if you posted your code correctly you're missing one &

='<center><a href=&quot;Hardware.asp?ssi=' + [System_Site_ID] + '&site= '+ [site] + '&quot;>Hardware</a></center>'

if not, I don't know what is the problem.
&quot;Defeat is not the worst of failures. Not to have tried is the true failure.&quot;
-George E. Woodberry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top