asp 程序报错只显示错误,不显示出错行,怎么解决?
各位大侠,我写的asp程序只报出错,不报出错行,这个怎么解决?if err <> 0 then
response.Write("<br>")
response.Write("出错号:")
response.Write(Err.number )
response.Write("<br>")
response.Write("出错原因:")
response.Write(Err.Source )
response.Write("<br>")
response.Write("错误描述:")
response.Write(Err.Description)
end if
我想让他报出哪行出错了,怎么办?