I'm creating a loop in which each line is a pretty long HTML line on the page. I've tried various combinations of @ and """ but I just can't seem to get the hang of it This is what I've got now, but the single quotes are giving me problems on the page, so I want to change all the single quotes to double quotes, just like a normal HTML line would use them for properties in the elements:
sOutput += "<div class='item link-item " + starOrBullet + "'><a href='" + appSet + linkID + "&TabID=" + tabID + "' target=’_blank’>" + linkText + "</a></div>";
variables are: starOrBullet appSet LinkID tabID (NOT $TabID=) linkText BTW, appSet="http://linktracker.swmed.org:8020/LinkTracker/Default.aspx?LinkID=" Can someone help me here?
\"or in verbatim string literals with"". Example:sOutput += $"<div class=\"item link-item {starOrBullet}\"><a href=\"{appSet}{linkID}\" &TabID=\"{tabID}\" target=\"_blank\">{linkText}</a></div>";