无法执行Response.write

时间:2014-02-24 23:45:48

标签: asp-classic

我有一个经典的asp页面,我想要执行参数化样式的asp调试。调试用于查找使用的SQL。我试图在Visual Web开发人员2010中进行调试,但调试选项显示为灰色。当我输入Response.Write时,我像往常一样获取asp页面。请帮助。

代码段如下:

'//Create Recordset
Set SKUOutput=Server.CreateObject("ADODB.Recordset")
'//Open Recordset

SKUOutput.Open SKUQuery, SKUConnection, adOpenDynamic, adLockOptimistic
recordCount=SKUOutput.RecordCount
SKUOutput.Close
Set SKUOutput=Nothing

'//Create Recordset
Set SKUOutput=Server.CreateObject("ADODB.Recordset")

SKUOutput.Open SKUQuery, SKUConnection, adOpenDynamic, adLockOptimistic
response.Write SKUQuery
response.End

1 个答案:

答案 0 :(得分:1)

我将你的response.write语句放在skuoutput.open

之前

我认为灰色选项仅适用于.net - 调试经典asp的方法是在服务器(或开发服务器)上运行它并读取输出中的错误消息。