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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Citrix Load Balancing

Status
Not open for further replies.

Webflex

Technical User
Apr 20, 2001
101
GB
Hi

How can I insert this
Code:
&SERVERLB=<%=SERVERLB%>

into this

Code:
Response.Write &quot;<font size=2 face='Arial,Helvetica,sans-serif'><b><a href=&quot; & Chr(34) & &quot;launch.asp?&quot; & &quot;NFuse_Application=&quot; & app.getNameUrlEncoded & &quot;&MIMEExtension=.ica&quot; & Chr(34) & &quot; target='hiddenwindow'>&quot;

without everything after the %> not being processed ?

TIA
Webflex

 
The < is &h3c or 60, the > is &h3e or 62, and the % is &h25, or 37.

So you COULD do chr(60) & chr(25) & &quot;Blahblahblah&quot; & chr(25) & chr(62)...


Kevin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top