亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? spring.tld

?? 網(wǎng)上拍賣系統(tǒng)
?? 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.1.2</tlib-version>
	<jsp-version>1.2</jsp-version>
	<short-name>Spring</short-name>
	<uri>http://www.springframework.org/tags</uri>
	<description>Spring Framework JSP Tag Library. Authors: Rod Johnson, Juergen Hoeller</description>

	<tag>
		<name>htmlEscape</name>
		<tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Sets default HTML escape value for the current page.
			Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
		</description>
		<attribute>
			<name>defaultHtmlEscape</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set the default value for HTML escaping, to be put
				into the current PageContext.</description>
		</attribute>
	</tag>

	<tag>
		<name>escapeBody</name>
		<tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides the
			default HTML escaping setting for the current page.</description>
		</attribute>
		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value.
			Default is false.</description>
		</attribute>
	</tag>

	<tag>
		<name>message</name>
		<tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
		<body-content>JSP</body-content>

		<description>
			Retrieves the message with the given code, or text if code isn't resolvable.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>

		<attribute>
			<name>message</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>A MessageSourceResolvable argument (direct or through JSP EL).</description>
		</attribute>

		<attribute>
			<name>code</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The code (key) to use when looking up the message.
			If code is not provided, the text attribute will be used.</description>
		</attribute>

		<attribute>
			<name>arguments</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set optional message arguments for this tag, as a
			(comma-)delimited String (each String argument can contain JSP EL),
			an Object array (used as argument array), or a single Object (used
			as single argument).</description>
		</attribute>

		<attribute>
			<name>argumentSeparator</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The separator character to be used for splitting the
			arguments string value; defaults to a 'comma' (',').</description>
		</attribute>

		<attribute>
			<name>text</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Default text to output when a message for the given code
			could not be found. If both text and code are not set, the tag will
			output null.</description>
		</attribute>

		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result
			gets outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>

		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exporting the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>

		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>

		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
		</attribute>
	</tag>

	<tag>

		<name>theme</name>
		<tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
		<body-content>JSP</body-content>

		<description>
			Retrieves the theme message with the given code, or text if code isn't resolvable.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>

		<attribute>
			<name>message</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>A MessageSourceResolvable argument (direct or through JSP EL).</description>
		</attribute>

		<attribute>
			<name>code</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The code (key) to use when looking up the message.
			If code is not provided, the text attribute will be used.</description>
		</attribute>

		<attribute>
			<name>arguments</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set optional message arguments for this tag, as a
			(comma-)delimited String (each String argument can contain JSP EL),
			an Object array (used as argument array), or a single Object (used
			as single argument).</description>
		</attribute>

		<attribute>
			<name>argumentSeparator</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The separator character to be used for splitting the
			arguments string value; defaults to a 'comma' (',').</description>
		</attribute>

		<attribute>
			<name>text</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Default text to output when a message for the given code
			could not be found. If both text and code are not set, the tag will
			output null.</description>
		</attribute>

		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result
			gets outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>

		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exporting the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>

		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>

		<attribute>
			<name>javaScriptEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
		</attribute>

	</tag>

	<tag>
		<name>hasBindErrors</name>
		<tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Provides Errors instance in case of bind errors.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<variable>
			<name-given>errors</name-given>
			<variable-class>org.springframework.validation.Errors</variable-class>
		</variable>
		<attribute>
			<name>name</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The name of the bean in the request, that needs to be
			inspected for errors. If errors are available for this bean, they
			will be bound under the 'errors' key.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value.
			Overrides the default HTML escaping setting for the current page.</description>
		</attribute>
	</tag>

	<tag>
		<name>nestedPath</name>
		<tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Sets a nested path to be used by the bind tag's path.
		</description>
		<variable>
			<name-given>nestedPath</name-given>
			<variable-class>java.lang.String</variable-class>
		</variable>
		<attribute>
			<name>path</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set the path that this tag should apply. E.g. 'customer'
			to allow bind paths like 'address.street' rather than
			'customer.address.street'.</description>
		</attribute>
	</tag>

	<tag>
		<name>bind</name>
		<tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
		<body-content>JSP</body-content>
		<description>
			Provides BindStatus object for the given bind path.
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
		</description>
		<variable>
			<name-given>status</name-given>
			<variable-class>org.springframework.web.servlet.support.BindStatus</variable-class>
		</variable>
		<attribute>
			<name>path</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The path to the bean or bean property to bind status
			information for. For instance account.name, company.address.zipCode
			or just employee. The status object will exported to the page scope,
			specifically for this bean or bean property</description>
		</attribute>
		<attribute>
			<name>ignoreNestedPath</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set whether to ignore a nested path, if any. Default is to not ignore.</description>
		</attribute>
		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides
			the default HTML escaping setting for the current page.</description>
		</attribute>
	</tag>

	<tag>
		<name>transform</name>
		<tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
		<body-content>JSP</body-content>

		<description>
			Provides transformation of variables to Strings, using an appropriate
			custom PropertyEditor from BindTag (can only be used inside BindTag).
			The HTML escaping flag participates in a page-wide or application-wide setting
			(i.e. by HtmlEscapeTag or a 'defaultHtmlEscape' context-param in web.xml).
		</description>

		<attribute>
			<name>value</name>
			<required>true</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The value to transform. This is the actual object you want
			to have transformed (for instance a Date). Using the PropertyEditor that
			is currently in use by the 'spring:bind' tag.</description>
		</attribute>

		<attribute>
			<name>var</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The string to use when binding the result to the page,
			request, session or application scope. If not specified, the result gets
			outputted to the writer (i.e. typically directly to the JSP).</description>
		</attribute>

		<attribute>
			<name>scope</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>The scope to use when exported the result to a variable.
			This attribute is only used when var is also set. Possible values are
			page, request, session and application.</description>
		</attribute>

		<attribute>
			<name>htmlEscape</name>
			<required>false</required>
			<rtexprvalue>true</rtexprvalue>
			<description>Set HTML escaping for this tag, as boolean value. Overrides
			the default HTML escaping setting for the current page.</description>
		</attribute>

	</tag>

</taglib>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品美腿丝袜| 中文字幕二三区不卡| 日韩一级免费观看| 久久精品一级爱片| 亚洲国产综合人成综合网站| 久久国产福利国产秒拍| 91蝌蚪porny| 久久综合精品国产一区二区三区| 一区二区三区在线免费| 国产99精品视频| 欧美一级久久久| 青青草97国产精品免费观看 | 国产大陆a不卡| 欧美色网一区二区| 国产日韩欧美a| 奇米综合一区二区三区精品视频| 欧美一二三区在线观看| 奇米精品一区二区三区四区| 久久综合久久久久88| 国产不卡一区视频| 尤物在线观看一区| 日韩午夜电影在线观看| 国产福利电影一区二区三区| 亚洲欧美乱综合| 成人不卡免费av| 久久精品人人做人人综合| 色综合色综合色综合色综合色综合 | 国产精品乱人伦一区二区| 麻豆国产精品视频| 日韩不卡一二三区| 北条麻妃一区二区三区| 国产v日产∨综合v精品视频| 欧美日韩国产首页在线观看| 中文字幕字幕中文在线中不卡视频| 日韩二区三区四区| 国产欧美日韩在线| 欧美吻胸吃奶大尺度电影| 裸体健美xxxx欧美裸体表演| 国产精品麻豆久久久| 日韩视频一区在线观看| 99re这里只有精品首页| 亚洲三级在线播放| 欧美成人精精品一区二区频| 玖玖九九国产精品| 亚洲六月丁香色婷婷综合久久| 日韩丝袜情趣美女图片| www.亚洲人| 狠狠色丁香久久婷婷综合_中 | 日韩精品专区在线影院重磅| 久久精品国产一区二区三 | 久久久亚洲精华液精华液精华液 | 激情欧美一区二区| 亚洲午夜电影网| 国产精品久久久久久久久晋中| 91亚洲国产成人精品一区二三| 日本成人中文字幕在线视频| 一区二区三区四区激情| 久久午夜国产精品| 欧美成va人片在线观看| 欧美日韩一区二区欧美激情| 蜜臀国产一区二区三区在线播放 | 99精品桃花视频在线观看| 精品一区二区三区免费毛片爱| 国产目拍亚洲精品99久久精品| 欧美久久久久中文字幕| 国内精品免费**视频| 亚洲国产一区二区视频| 欧美一区三区二区| 韩国欧美国产一区| 亚洲一区二区精品视频| 首页国产欧美久久| 国产专区综合网| 亚洲人亚洲人成电影网站色| 国产午夜一区二区三区| 久久先锋资源网| 日韩精品专区在线影院重磅| 91精品国产丝袜白色高跟鞋| 欧美在线综合视频| 亚洲国产精品自拍| 亚洲色图都市小说| 自拍偷拍亚洲激情| 国产精品美女久久久久久| 国产性做久久久久久| 久久久精品一品道一区| 国产欧美一区二区精品秋霞影院 | 粉嫩久久99精品久久久久久夜| 日韩av高清在线观看| 亚洲综合一区二区三区| 亚洲一区二区三区在线看| 亚洲三级免费观看| 亚洲私人影院在线观看| 一区二区三区日韩欧美| 18欧美亚洲精品| 国产精品久久久久一区二区三区 | 欧美不卡一区二区三区四区| 欧美一个色资源| 欧美日韩电影在线播放| 91女神在线视频| 色老汉av一区二区三区| 日韩和的一区二区| 日本亚洲三级在线| 国产乱国产乱300精品| 国产福利一区在线| 色婷婷精品大在线视频| 欧美顶级少妇做爰| 日韩欧美一级二级三级久久久| www国产亚洲精品久久麻豆| 国产三级精品三级在线专区| 开心九九激情九九欧美日韩精美视频电影 | 久久久五月婷婷| 中文字幕免费观看一区| 中文字幕一区免费在线观看 | 一卡二卡欧美日韩| 全国精品久久少妇| 久久99精品久久久久久久久久久久| 丁香激情综合国产| 亚洲免费观看高清完整版在线观看| 亚洲福利视频一区二区| 美女爽到高潮91| 99久免费精品视频在线观看| 日韩久久免费av| 这里是久久伊人| 日韩欧美高清在线| 99精品久久只有精品| 色成年激情久久综合| 欧美精品丝袜中出| 久久综合九色综合久久久精品综合| 亚洲精品一区二区三区影院| 中文成人av在线| 亚洲第一在线综合网站| 国产一区二区三区不卡在线观看| 丁香一区二区三区| 91网站最新地址| 欧美大片一区二区三区| 欧美一级高清片| 亚洲欧美中日韩| 中文字幕一区三区| 视频精品一区二区| 91久久精品网| 久久综合狠狠综合久久综合88 | 亚洲国产精品v| 丝袜亚洲另类丝袜在线| 丁香婷婷综合激情五月色| 欧美日韩成人综合在线一区二区| 精品福利在线导航| 亚洲午夜电影在线| 韩国中文字幕2020精品| 91精品久久久久久久久99蜜臂| 国产欧美精品区一区二区三区| 天天色天天爱天天射综合| 国产精品久久久久久福利一牛影视 | 亚洲午夜在线视频| 国产精品久久久久一区二区三区共| 日本中文字幕一区二区有限公司| 亚洲欧美激情在线| 国产精品99久久久| 亚洲一区二区三区激情| 亚洲在线视频网站| 韩国中文字幕2020精品| 欧美一区二区三区小说| 精品国产91久久久久久久妲己| 亚洲444eee在线观看| 在线观看视频欧美| 中文字幕视频一区| 波多野结衣一区二区三区| 欧美精品一区二区三区一线天视频| 日韩精品免费专区| 9久草视频在线视频精品| 2020国产精品| 久久激情五月激情| 欧美肥妇毛茸茸| 亚洲国产精品自拍| 欧美日韩极品在线观看一区| 亚洲另类一区二区| 欧美日韩大陆一区二区| 亚洲成av人在线观看| 在线观看一区日韩| 一区二区三区四区不卡在线| 色综合久久久久久久| 国产亚洲短视频| 亚洲午夜视频在线| 91视频你懂的| 亚洲女性喷水在线观看一区| 91猫先生在线| 国产精品久久国产精麻豆99网站| 国产一区在线观看视频| 久久久91精品国产一区二区三区| 国产精品一区二区黑丝| 精品久久久影院| 成人一道本在线| 日韩美女视频一区二区在线观看| 日韩电影免费在线| 国产亚洲欧洲997久久综合| 国产一区二区三区精品视频| 中文字幕第一区综合| 99九九99九九九视频精品| 怡红院av一区二区三区| 欧美麻豆精品久久久久久| 麻豆一区二区三区| 国产喷白浆一区二区三区|