我正在编写一个经典的 ASP 页面。这条线有效:
Response.Write ("<tr>" & vbCrLf)
我想添加onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';
到文本中。
我试过这个:
Response.Write ("<tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';>" & vbCrLf)
但这会导致 ASP 认为部分是注释。我正在寻找忽略字符或正确的代码行。