ASP中if id<>"" then是什么意思啊
ASP中if id<>"" then是什么意思啊
日期:2016-05-15 14:38:19 人气:1
ASP中if id"" then的意思是:如果id不等于空,那么就会执行then以后的代码,比如:
<%
if id "" then
Response.Write("id 不允许为空");
elseif id ="1" then
Response.Write("id的值为1");
// to do something
%>