html – 为什么我的调试消息没有写入我的页面?

前端之家收集整理的这篇文章主要介绍了html – 为什么我的调试消息没有写入我的页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些调试消息(通过Response.Write()编写),当我执行“查看源代码”时,我可以看到(在VB代码中):
currentYear = Year(Now)
sqlString = "Select NewBiz from MasterUnitsprojSales where CYear = " & currentYear & " and Unit = '" & Unit & "'"
adoRS = New ADODB.Recordset
adoRS.Open(sqlString,adoCon)
IsNewBusiness = TRUE 'default (if record not found)
Category = "New Business"
If Not adoRS.EOF Then
    IsNewBusiness = adoRS.Fields.Item(0).Value <> 0 
    if Not IsNewBusiness
            Category = "Existing Business"
    End If
    Response.Write("<!-- IsNewBusiness after NOT EOF assignment = " & CStr(IsNewBusiness) & "-->")
End If
adoRS.Close()

– 和(在hmtl内):

<% Response.Write("<!-- Is New Biz = " & IsNewBusiness & "-->") %>

当我转到页面并“查看源代码”时,我可以看到这些消息

但我还有其他类似的实例没有写出来,例如:

If Request.Form.Item("Action") = "Save" Then
    Response.Write("<!-- Made it into the Action =Save block -->")
    . . .

我知道这个块已经到达,因为它中的逻辑正在发生(数据库插入).

为什么Response.Write()并不总是有效?

解决方法

您的HTML注释行是否附加到响应中的其他文本?

如果是这样,它可能会在“查看源”显示中向右(远视)渲染.

尝试在此文本之前和之后插入回车符换行符.

Response.Write(vbCrLf + "<!-- Made it into the Action =Save block -->" + vbCrLf)

如果这是问题,在“查看源”显示中执行Ctrl-F查找可能会显示此注释行.

原文链接:https://www.f2er.com/html/226741.html

猜你在找的HTML相关文章