I am adding some script using the StringBuilder. The script is as shown below.
<script type='text/javascript'><!-- //<![CDATA[
var m3_u = (location.protocol == 'https:' ? '.php' : '.php');
var m3_r = Math.floor(Math.random() * 99965449);
if (!document.MAX_used) document.MAX_used = ',';
document.write("<scr" + "ipt type='text/javascript' src='" + m3_u);
document.write("?zoneid=311120&target=_top");
document.write('&cb=' + m3_r);
if (document.MAX_used != ',') document.write("&exclude=" + document.MAX_used);
document.write(document.charset ? '&charset=' + document.charset : (document.characterSet ? '&charset=' + document.characterSet : ''));
document.write("&loc=" + escape(window.location));
if (document.referrer) document.write("&referer=" + escape(document.referrer));
if (document.context) document.write("&context=" + escape(document.context));
if (document.mmm_fo) document.write("&mmm_fo=1");
document.write("'><\/scr" + "ipt>");
//]]>-->
</script><noscript><a href='.php?n=ad4565c1&cb=2244' target='_top'><img src='.php?zoneid=36540&n=a535c1' border='0' alt='' /></a></noscript>
When I add this using String Builder, it gives error "Too many characters in character literal" This is how I am doing. How to do it?
sb.append(@"<script type='text/javascript'><!-- //<![CDATA[
var m3_u = (location.protocol == 'https:' ? '.php' : '.php');
var m3_r = Math.floor(Math.random() * 99965449);
if (!document.MAX_used) document.MAX_used = ',';
document.write("<scr" + "ipt type='text/javascript' src='" + m3_u);
document.write("?zoneid=311120&target=_top");
document.write('&cb=' + m3_r);
if (document.MAX_used != ',') document.write("&exclude=" + document.MAX_used);
document.write(document.charset ? '&charset=' + document.charset : (document.characterSet ? '&charset=' + document.characterSet : ''));
document.write("&loc=" + escape(window.location));
if (document.referrer) document.write("&referer=" + escape(document.referrer));
if (document.context) document.write("&context=" + escape(document.context));
if (document.mmm_fo) document.write("&mmm_fo=1");
document.write("'><\/scr" + "ipt>");
//]]>-->
</script><noscript><a href='.php?n=ad4565c1&cb=2244' target='_top'><img src='.php?zoneid=36540&n=a535c1' border='0' alt='' /></a></noscript>
");
I am adding some script using the StringBuilder. The script is as shown below.
<script type='text/javascript'><!-- //<![CDATA[
var m3_u = (location.protocol == 'https:' ? 'https://rre.rrt./sss.php' : 'https://rre.rrt./sss.php');
var m3_r = Math.floor(Math.random() * 99965449);
if (!document.MAX_used) document.MAX_used = ',';
document.write("<scr" + "ipt type='text/javascript' src='" + m3_u);
document.write("?zoneid=311120&target=_top");
document.write('&cb=' + m3_r);
if (document.MAX_used != ',') document.write("&exclude=" + document.MAX_used);
document.write(document.charset ? '&charset=' + document.charset : (document.characterSet ? '&charset=' + document.characterSet : ''));
document.write("&loc=" + escape(window.location));
if (document.referrer) document.write("&referer=" + escape(document.referrer));
if (document.context) document.write("&context=" + escape(document.context));
if (document.mmm_fo) document.write("&mmm_fo=1");
document.write("'><\/scr" + "ipt>");
//]]>-->
</script><noscript><a href='https://rre.rrt./sss.php?n=ad4565c1&cb=2244' target='_top'><img src='https://rre.rrt./sss.php?zoneid=36540&n=a535c1' border='0' alt='' /></a></noscript>
When I add this using String Builder, it gives error "Too many characters in character literal" This is how I am doing. How to do it?
sb.append(@"<script type='text/javascript'><!-- //<![CDATA[
var m3_u = (location.protocol == 'https:' ? 'https://rre.rrt./sss.php' : 'https://rre.rrt./sss.php');
var m3_r = Math.floor(Math.random() * 99965449);
if (!document.MAX_used) document.MAX_used = ',';
document.write("<scr" + "ipt type='text/javascript' src='" + m3_u);
document.write("?zoneid=311120&target=_top");
document.write('&cb=' + m3_r);
if (document.MAX_used != ',') document.write("&exclude=" + document.MAX_used);
document.write(document.charset ? '&charset=' + document.charset : (document.characterSet ? '&charset=' + document.characterSet : ''));
document.write("&loc=" + escape(window.location));
if (document.referrer) document.write("&referer=" + escape(document.referrer));
if (document.context) document.write("&context=" + escape(document.context));
if (document.mmm_fo) document.write("&mmm_fo=1");
document.write("'><\/scr" + "ipt>");
//]]>-->
</script><noscript><a href='https://rre.rrt./sss.php?n=ad4565c1&cb=2244' target='_top'><img src='https://rre.rrt./sss.php?zoneid=36540&n=a535c1' border='0' alt='' /></a></noscript>
");
Share
Improve this question
edited Aug 9, 2010 at 14:06
Steven Spielberg
asked May 9, 2009 at 10:50
KJaiKJai
1,7153 gold badges15 silver badges16 bronze badges
1
- 2 mmmmmm, I love spaghetti – Chad Grant Commented May 9, 2009 at 12:03
3 Answers
Reset to default 7The whole point of using a StringBuilder
is to build the string part by part. If you break up the long string into logical portions, then it bees easier for you to figure out any errors as well as make modifications (and believe me, it bees much easier to read!).
Also, When using verbatim string literals in C#, you still need to escape double quotes with another double quote. The following code piles correctly:
sb.Append(@"<script type='text/javascript'>");
sb.Append(@"<!-- //<![CDATA[");
sb.Append(@"var m3_u = (location.protocol == 'https:' ? 'https://rre.rrt./sss.php' : 'https://rre.rrt./sss.php');");
sb.Append(@"var m3_r = Math.floor(Math.random() * 99965449);");
sb.Append(@"if (!document.MAX_used) document.MAX_used = ',';"");");
sb.Append(@"document.write(""<script type='text/javascript' src='"" + m3_u);");
sb.Append(@"document.write(""?zoneid=311120&target=_top"");");
sb.Append(@"document.write('&cb=' + m3_r);");
sb.Append(@"if (document.MAX_used != ',') document.write(""&exclude="" + document.MAX_used);");
sb.Append(@"document.write(document.charset ? '&charset=' + document.charset : ");
sb.Append(@"(document.characterSet ? '&charset=' + document.characterSet : ''));");
sb.Append(@"document.write(""&loc="" + escape(window.location));");
sb.Append(@"if (document.referrer) document.write(""&referer="" + escape(document.referrer));");
sb.Append(@"if (document.context) document.write(""&context="" + escape(document.context));");
sb.Append(@"if (document.mmm_fo) document.write(""&mmm_fo=1"");");
sb.Append(@"document.write(""'><\/script>"");");
sb.Append(@"//]]>-->");
sb.Append(@"</script>");
sb.Append(@"<noscript>");
sb.Append(@"<a href='https://rre.rrt./sss.php?n=ad4565c1&cb=2244' target='_top'>");
sb.Append(@"<img src='https://rre.rrt./sss.php?zoneid=36540&n=a535c1' border='0' alt='' /></a>");
sb.Append(@"</noscript>");
.NET usually gives the error when you are trying to initalise a char type with more than one character.
From the conversation here it seems you may also get the error when .NET gets confused by single quotes and assumes you are trying to use them to define a 'char' literal.
Given the heavy use of double and single quotes in your string above, I'd remend splitting it up into smaller strings and .append() each one separately - maybe a seperate .append() call for each line of the string.
Then you will be able to narrow it down and find out which bit .NET is objecting to.
You should then be able to fix the problem by checking through the double and single quotes. I can't really decipher your append but it looks like you should be using escaped double quotes \" in some places.
edit: example of escaping double quotes:
e.g
sb.Append("document.write(\"<scr\" + \"ipt type='text/javascript' src='\" + m3_u);");
edit after Cerebrus suggestion:
If you want to use a verbatim string literal (with the @ prefix) then the double-quotes must be escaped by repeating them:
sb.Append(@"document.write(""<scr"" + ""ipt type='text/javascript' src='"" + m3_u);");
An alternative answer:
As your javascript code is static code anyway (its the same every time, no ASP.NET variables are bined into it), why bother to build it in ASP.NET code?
You could just put the whole script block into the .aspx page, just like you would with a pure HTML page. Then you don't need to bother building it in code.