Advertisement
Advertisement
| 01.09.2008 at 10:52AM PST, ID: 23070372 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: |
Tag file: demo.tag
<%@ tag description="Demo tag" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ attribute name="template" fragment="true" %>
<%@ variable name-given="x" %>
<div>
<c:set var="x" value="tony" />
<jsp:invoke fragment="template" />
</div>
template.jsp
<%@ page contentType="text/html; charset=UTF-8" isELIgnored="true" %>
<font color="red">
hello ${x}
</font>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib tagdir="/WEB-INF/tags" prefix="and"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Demo fragments</title>
</head>
<body>
<and:demo>
<jsp:attribute name="template">
<c:import url="/WEB-INF/template.jsp"/>
</jsp:attribute>
</and:demo>
</body>
</html>
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 01.09.2008 at 11:11AM PST, ID: 20621158 |
| 01.09.2008 at 11:46AM PST, ID: 20621581 |
| 01.09.2008 at 11:57AM PST, ID: 20621688 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
snip...
<body>
<and:demo>
<!-- generate filename for content rendering -->
<c:set var="filename" value="content.viewname" />
<jsp:attribute name="template">
<c:import url="/WEB-INF/${filename}.jsp"/>
</jsp:attribute>
</and:demo>
</body>
</html>
|
| 01.09.2008 at 11:58AM PST, ID: 20621713 |
| 01.09.2008 at 12:22PM PST, ID: 20621959 |
| 01.10.2008 at 12:34AM PST, ID: 20625726 |