当前位置: 代码迷 >> JavaScript >> JSP的惯用指令
  详细解决方案

JSP的惯用指令

热度:487   发布时间:2012-10-05 15:34:34.0
JSP的常用指令
<%@page language=”java” contenType=”text/html;charset=gb2312″ session=”true” buffer=”64kb” autoFlush=”true” isThreadSafe=”true” info=”text” errorPage=”error.jsp” isErrorPage=”true” isELIgnored=”true” pageEncoding=”gb2312″ import=”java.sql.*”%>
isErrorPage(是否能使用Exception对象),isELIgnored(是否忽略表达式)
<%@include file=”filename”%>
<%@taglib prefix=”c”uri=” http://……”%>/
  相关解决方案