2010-11-04 45 views
0
<?xml version="1.0" encoding="ISO-8859-1" ?> 

问题是不是<jsp:expression>等于<%= %>表达式在jsp文件中? &我可以在同一个文件中使用scriplet的动作标签吗?

<jsp:text> 

    <![CDATA[ <?xml version="1.0" encoding="ISO-8859-1" ?> ]]> 
</jsp:text> 

<jsp:text> 
    <![CDATA[ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ]]> 
</jsp:text> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> 
<title>JSP OUTPUT</title> 
</head> 


<body background="pic_for_try\\Cracked_LCD_Screen_Wallpaper.jpg" 
    style="background-attachment: fixed; background-repeat: repeat; background-color: #FF8000"> 

<jsp:expression>request.getParameter("myname")</jsp:expression> 

</body> 
</html> 

+0

什么错误信息你好吗? – nitind 2014-01-21 07:07:35

回答

0

尝试增加:

<%@ page isScriptingEnabled="true|false" isELEnabled="true|false"%> 
+0

它告诉我 - 未定义的属性名称 \t“isELEnabled”和isScriptingEnabled – MineIsMine 2010-11-04 08:40:04

+0

你把它放在哪里?它应该在最上面。 – 2010-11-04 08:50:54

+0

还让你有jstl库包括 – 2010-11-04 08:52:35

相关问题