N/A
自定義 tag 的使用方式.
<%@ taglib uri="mytaglib.tld" prefix="myprefix" %>
...
<%-- the start tag %>
<myprefix:myaction>
...
</myprefix:myaction>
<%-- the end tag %>
escape " within the value
Q: 使用標籤時出現例外錯誤, Attribute value XXX is quoted with " which must be escaped when used within the value
A: 依照這篇文章描述, 問題有可能出現在 Tomcat 5.5.26 升級到 5.5.27 的時候發生, 原因是因為 <tt:mytag value="<%=bean.get("name")%>"/> 標籤裡包住值的兩個雙引號中, 又出現了雙引號而造成的, 解決方法是將 " 改成 \", 依照上面例子就是 <tt:mytag value="<%=bean.get(\"name\")%>"/>
// code block
@TODO: