Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 asp 。在 php 中我们使用
die('error message')
它在asp(vb脚本)中的等效代码是什么?如何在asp中调试?
在经典 ASP 中,使用这个:
Response.End
要在结束前输出一些东西,请使用以下代码:
Response.Write "Hello, World!" Response.End
这相当于:
die("Hello, World!");
我不太记得 asp.net 但你可以使用
在此处返回您的变量
或者
第二个将输出一切