class.d ; 更新日期:2024/11/20 饿虎岗资源网" />

当前位置:首页 >> 网络编程

jsp只在首次加载时调用action实现代码

复制代码 代码如下:
<%
List<Class> list=(List)request.getAttribute("classlist");
if(list==null){
response.sendRedirect("class.do?method=doShow");
}
%>

class.do是action名称。