我从VS 2008迁移到VS 2015,现在文本编辑器突出显示了<input type="button" class="button btn-cancel" onclick="hideModal('<%=Modal_NotEnoughFunds.ClientID%>');" />
个文件的某些行并生成警告:
未终止的字符串常量。期待&#39;)&#39; .`。
例如,此代码生成警告:
hideModal
<div style='background-image: url(images/l_<%#: Item.Id %>.png);'>
是JS函数。我应该如何正确地写它以避免警告?
另一个例子是:
// Create a GUI context
xGUI::xGUI gui(800, 600);
// gui.objects is a std::map<std::string, IWidget *>
gui.objects["btn"] = xGUI::Button("Close", 50, 50);
gui.objects["btn2"] = gui.objects["btn"].clone();