0

下面的一段代码:

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 之前运行良好。

会话变量主要用于错误处理(我在错误的电子邮件中输出所有会话变量)

4

1 回答 1

0

但是当我在我的 SQL Server 上执行它时,我得到:“不适用”

我想知道你到底想要完成什么,如果你能指出“不适用”的来源会更好(看起来“不适用”不是你代码中的自定义字符串)。

这在我迁移到 SQL Azure 之前运行良好。

如果您能提供“不适用”相关信息的截图,我们会更方便地发现问题并为您提供进一步的建议。

最好的祝福,

明旭。

于 2012-05-10T07:09:25.740 回答