Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
oak3 #1
insert anchor # into cf variable string
Can someone please tell me how to insert an anchor '#' inside a dynamically
generated url string with variables? Ex.
gotourl.cfm?var1=#form.var1#&var2=#form.var2## #form.var2# where the triple
# the middle one is to tell the url to go to that anchor position in the next
page Thanks, Oak
oak3 Guest
-
Insert Section Anchor greyed out
What do I do to give my content maintainer permission to insert Section Anchors? Where do I go in Administer Websites? (is that where?) ... -
Insert ASP variable into SQL table
Hi, I have a variable called 'pSKU' (without quotes) that holds the SKU of a product. When someone visits a product page, I would like it to... -
insert string?
Hi, I have to search for "<TABLE width=90% CELLPADDING=0 CELLSPACING=0 BORDER=0>" in a string and insert right after that following:"<span... -
How to replace a variable string within /* variable_string */ with x for each character in string?
How to replace a variable string within /* variable_string */ with x for each character in string? The string may span on multiple lines. for... -
how to insert a carriage return in a string
Hello, definitely a very newbie question... i have strings, possibly with carriage returns in my application, and i want to save them with '\n'... -
JMGibson3 #2
Re: insert anchor # into cf variable string
Try 4 #'s. left one terminates left variable, right one begins right variable,
middle two provide a single # sign in the resultant string. If that doesn't
work you can always construct a URL string via concatenation. <cfset varURL =
'gotourl.cfm?var1=' & form.var1 & '&var2=' & form.var2 &
'##' & form.var2>
JMGibson3 Guest
-



Reply With Quote

