gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 13:51:38 24 4
gpt4 key购买 nike

我有一些调试消息(通过 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()

-and(在 hmtl 内):

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

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

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

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

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

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

最佳答案

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

如果是这样,它可能会在您的“查看源代码”显示中呈现在最右边(看不见)。

尝试在此文本前后插入回车换行符。

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

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

关于html - 为什么我的调试消息没有写入我的页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42638129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com