我得到的编译错误是“常量换行”
错误发生在四个星号为(****
)的情况下
我无法调试,因为解决方案无法成功构建。
<script type="text/javascript">
function TNClicked(fullImgURL, TNID) {
document.getElementById("<%= this.imgFull.ClientID %>").src = fullImgURL;
var pnlFullImage = document.getElementById("<%= this.pnlFullImage.ClientID %>");
if (pnlFullImage.style.visibility != "visible")
pnlFullImage.style.visibility = "visible";
document.getElementById("<%= this.tcImage.ClientID %>").innerHTML = TNID;
//document.forms[0].ctl00$ctl00$ctl00$cntBody$hfImage.value = TNID;
//****document.getElementById("<%= this.hfImage").setAttribute("value", TNID);
//document.getElementById("<%= this.hfImage.ClientID %>").value = TNID;
}
</script>
答案 0 :(得分:3)
尝试使用
评论您的评论<%--
--%>
并关闭此
("<%= this.hfImage%>")