if else endif是asp中最常用的的几个判断语句,下面列举了两种asp的判断形势,做个小记录,因为经常会用到。
<%if request(“ClassID”)=2 then%>
输出内容
<% else %>
<%end if%>
<%if request(“id”)=62109 then%>
11111
<%elseif request(“id”)=62939 then%>
22222
<%elseif request(“id”)=62916 then%>
3333
<% else %>
<%end if%>
<%=request(“title”)%>