首页 > 代码库 > Jsp指令有那些?

Jsp指令有那些?

<%@page language=”java” contentType=”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:是否忽略EL表达式;

<%@include file=”filename”%>

<%@taglib prefix=”c”uri=”http://……”%>

Jsp指令有那些?