Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to set a variable to a string with special characters?

New Here ,
Sep 11, 2014 Sep 11, 2014

I want to set a variable to

<cfset inputstring = "<img src="../../../server/win/form/stamp/string_1" />"/>

but i keep getting error:

Invalid CFML construct found on line 184 at column 32.

ColdFusion was looking at the following text:

.

I have try it different ways , what i'm i doing wrong?

270
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , Sep 11, 2014 Sep 11, 2014

You have to either escape the inner quotes or mix single and double quotes.  Try:

<cfset inputstring = "<img src=""../../../server/win/form/stamp/string_1"" />"/>


or

<cfset inputstring = '<img src="../../../server/win/form/stamp/string_1" />'/>


Oh, and the trailing forward slashes aren't necessary in the <cfset> tag.

-Carl V.

Translate
Guide ,
Sep 11, 2014 Sep 11, 2014
LATEST

You have to either escape the inner quotes or mix single and double quotes.  Try:

<cfset inputstring = "<img src=""../../../server/win/form/stamp/string_1"" />"/>


or

<cfset inputstring = '<img src="../../../server/win/form/stamp/string_1" />'/>


Oh, and the trailing forward slashes aren't necessary in the <cfset> tag.

-Carl V.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources