⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jcf-html.tld

📁 一种快速开发的Java Web架构,doc里有详细的设计文档和开发文档。
💻 TLD
字号:
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE taglib
        PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
        "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">

<taglib>

	<tlib-version>1.0</tlib-version>
	<jsp-version>1.2</jsp-version>
	<short-name>jcf</short-name>

	<!-- Here is the URI you use with the 'taglib' directive in the JSP -->
	<uri>com.jcf.tags.html</uri>

	<description>jcf framework custom tags</description>

	<tag>

		<name>page</name>

		<!-- make sure to use the fully qualifed class name -->
		<tag-class>com.hisoft.cottonbusiness.core.common.PageTag</tag-class>

		<body-content>JSP</body-content>

		<description>This tag writes a logo inside the JSP.</description>

		<attribute>
			<name>currPage</name>
			<!-- The logo tag requires this attribute -->
			<required>true</required>
			<!-- The attribute can take a JSP expression as a value -->
			<rtexprvalue>true</rtexprvalue>
			<description>current page number</description>
		</attribute>

		<attribute>
			<name>resultCount</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>total result row number</description>
		</attribute>

		<attribute>
			<name>pageSize</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>result row count per page</description>
		</attribute>

		<attribute>
			<name>uri</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>uri</description>
		</attribute>

	</tag>


</taglib>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -