下面的一段代码:
Session("SQL") = "SELECT * FROM tbl_policyLinktoClient where aut_id = " & 39028
Session("RSLinkQuoteToallThatStuffSQL") = Session("SQL")
'Response.write(Session("SQL"))
RSLinkQuoteToallThatStuff.Open Session("SQL"), Conn, 3, 4
if RSLinkQuoteToallThatStuff.eof then
Response.write("SQL = " & Session("SQL") & "<BR>")
Response.write("Policy Number is incorrect")
Response.end
end if
Response.Write("~" & RSLinkQuoteToallThatStuff("clc_policyFee") & "~")
Response.write("!")
Response.end()
给出以下页面输出:
~!
但是当我在我的 SQL Server 上执行它时,我得到:
“不适用”
使用 SQL 结果中的引号。
这在我迁移到 SQL Azure 之前运行良好。
会话变量主要用于错误处理(我在错误的电子邮件中输出所有会话变量)