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

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

?? struts-bean-el.tld

?? Apache struts-1.3.10 a stable version
?? TLD
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
        </attribute>
        <attribute>
            <name>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the property to be accessed on the bean
         specified by <code>name</code>.  This value may be a simple, indexed,
         or nested property reference expression.  If not specified, the value
         of the bean identified by <code>name</code> will itself be used as the
         message resource key.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>scope</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the variable scope searched to retrieve the bean specified
         by <code>name</code>.  If not specified, the default rules applied by
         <code>PageContext.findAttribute()</code> are applied.</p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>page</name>
        <tag-class>org.apache.strutsel.taglib.bean.ELPageTag</tag-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
      <p><strong>Expose a specified item from the page context as a bean.
      </strong></p>
      <p>Retrieve the value of the specified item from the page context
      for this page, and define it as a scripting variable, and a page scope
      attribute accessible to the remainder of the current page.</p>
      <p>If a problem occurs while retrieving the specified configuration
      object, a request time exception will be thrown.</p>
      ]]>
        </description>
        <attribute>
            <name>id</name>
            <required>true</required>
            <rtexprvalue>false</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the scripting variable (and associated
         page scope attribute) that will be made available with the value of
         the specified page context property.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Name of the property from our page context to be retrieved and
         exposed.  Must be one of <code>application</code>, <code>config</code>,
         <code>request</code>, <code>response</code>, or <code>session</code>.
         </p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>resource</name>
        <tag-class>org.apache.strutsel.taglib.bean.ELResourceTag</tag-class>
        <tei-class>org.apache.struts.taglib.bean.ResourceTei</tei-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
      <p><strong>Load a web application resource and make it available as a 
      bean.</strong></p>
      <p>Retrieve the value of the specified web application resource, and make
      it available as either a <code>InputStream</code> or a 
      <code>String</code>, depending on the value of the <code>input</code> 
      attribute.</p>
      <p>If a problem occurs while retrieving the specified resource, a
      request time exception will be thrown.</p>
      ]]>
        </description>
        <attribute>
            <name>id</name>
            <required>true</required>
            <rtexprvalue>false</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the scripting variable (and associated page
         scope attribute) that will be made available with the value of the
         specified web application resource.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>input</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>If any arbitrary value for this attribute is specified, the resource
         will be made available as an <code>InputStream</code>.  If this
         attribute is not specified, the resource will be made available
         as a <code>String</code>.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>name</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Module-relative name (starting with a '/') of the web application
         resource to be loaded and made available.</p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>size</name>
        <tag-class>org.apache.strutsel.taglib.bean.ELSizeTag</tag-class>
        <tei-class>org.apache.struts.taglib.bean.SizeTei</tei-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
      <p><strong>Define a bean containing the number of elements in a 
      Collection or Map.</strong></p>
      <p>Given a reference to an array, Collection or Map, creates a new bean,
      of type <code>java.lang.Integer</code>, whose value is the number of 
      elements in that collection.  You can specify the collection to be 
      counted in any one of the following ways:</p>
         <ul>
            <li>As a runtime expression specified as the value of the
            <code>collection</code> attribute.</li>
            <li>As a JSP bean specified by the <code>name</code> attribute.</li>
            <li>As the property, specified by the <code>property</code> attribute,
            of the JSP bean specified by the <code>name</code> attribute.</li>
         </ul>
      ]]>
        </description>
        <attribute>
            <name>collection</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>A runtime expression that evaluates to an array, a Collection, or
         a Map.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>id</name>
            <required>true</required>
            <rtexprvalue>false</rtexprvalue>
            <description>
                <![CDATA[
         <p>The name of a page scope JSP bean, of type
         <code>java.lang.Integer</code>, that will be created to contain the
         size of the underlying collection being counted.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>The name of the JSP bean (optionally constrained to the scope
         specified by the <code>scope</code> attribute) that contains the
         collection to be counted (if <code>property</code> is not specified),
         or whose property getter is called to return the collection to be
         counted (if <code>property</code> is specified.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>The name of the property, of the bean specified by the
         <code>name</code> attribute, whose getter method will return the
         collection to be counted.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>scope</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>The bean scope within which to search for the JSP bean specified
         by the <code>name</code> attribute.  If not specified, the available
         scopes are searched in ascending sequence.</p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>struts</name>
        <tag-class>org.apache.strutsel.taglib.bean.ELStrutsTag</tag-class>
        <tei-class>org.apache.struts.taglib.bean.StrutsTei</tei-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
      <p><strong>Expose a named Struts internal configuration object as a bean.
      </strong></p>
      <p>Retrieve the value of the specified Struts internal configuration
      object, and define it as a scripting variable and as a page scope
      attribute accessible to the remainder of the current page.  You must
      specify exactly one of the <code>formBean</code>, <code>forward</code>,
      and <code>mapping</code> attributes to select the configuration object
      to be exposed.</p>
      <p>If a problem occurs while retrieving the specified configuration
      object, a request time exception will be thrown.</p>
      ]]>
        </description>
        <attribute>
            <name>id</name>
            <required>true</required>
            <rtexprvalue>false</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the scripting variable (and associated
         page scope attribute) that will be made available with the value of
         the specified Struts internal configuration object.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>formBean</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the Struts <code>ActionFormBean</code>
         definition object to be exposed.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>forward</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the name of the global Struts <code>ActionForward</code>
         definition object to be exposed.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>mapping</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
         <p>Specifies the matching path of the Struts <code>ActionMapping</code>
         definition object to be exposed.</p>
         ]]>
            </description>
        </attribute>
    </tag>
</taglib>



?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品国产综合久久香蕉麻豆| eeuss鲁片一区二区三区在线看| 中文字幕精品—区二区四季| 色欧美日韩亚洲| 狠狠色综合播放一区二区| 亚洲欧美另类在线| 久久久久国产一区二区三区四区| 欧美日韩三级视频| av中文字幕一区| 国产毛片精品视频| 日本欧洲一区二区| 亚洲欧美日韩电影| 欧美国产日韩a欧美在线观看 | 蜜臀久久99精品久久久久宅男| 久久久影视传媒| 91美女片黄在线| 老鸭窝一区二区久久精品| 亚洲女子a中天字幕| 国产女人18毛片水真多成人如厕| 911精品产国品一二三产区| 99re免费视频精品全部| 国产精品一二三区在线| 麻豆成人综合网| 琪琪久久久久日韩精品| 亚州成人在线电影| 一区二区三区中文字幕在线观看| 国产精品免费看片| 国产三级精品三级| 久久久蜜臀国产一区二区| 欧美一区二区在线视频| 精品91自产拍在线观看一区| 51精品国自产在线| 欧美精品在线观看播放| 欧美探花视频资源| 欧美色国产精品| 欧美性xxxxxxxx| 欧美电影一区二区| 日本国产一区二区| 91麻豆精品秘密| 91在线视频官网| 99国产精品99久久久久久| 成人激情开心网| 成人av电影免费在线播放| 国产99精品在线观看| 高清av一区二区| 成人精品电影在线观看| 国产**成人网毛片九色| 成人免费黄色大片| 91视频你懂的| 日本道在线观看一区二区| 欧洲精品中文字幕| 欧美日本国产视频| 日韩亚洲欧美中文三级| 日韩精品在线一区二区| 欧美mv日韩mv国产网站| 久久久.com| 中文字幕日韩欧美一区二区三区| 亚洲欧美另类在线| 久久精品网站免费观看| 国产欧美一区二区三区在线老狼| 国产精品电影院| 亚洲一区二区免费视频| 青青草国产精品亚洲专区无| 国产在线国偷精品免费看| 成人精品一区二区三区中文字幕| 色综合久久久久网| 欧美一区二区网站| 久久久久久久久久久99999| 国产精品三级电影| 亚洲一区二区不卡免费| 另类中文字幕网| proumb性欧美在线观看| 欧美日免费三级在线| 日韩免费性生活视频播放| 国产精品午夜免费| 亚洲国产sm捆绑调教视频| 精品亚洲成av人在线观看| 99久久久久久| 日韩欧美激情在线| 国产精品麻豆网站| 天堂蜜桃一区二区三区| 国产91在线看| 欧美日韩一卡二卡| 国产欧美日产一区| 天天综合色天天综合| 东方欧美亚洲色图在线| 欧美性色aⅴ视频一区日韩精品| 精品久久久久久久一区二区蜜臀| 成人欧美一区二区三区白人| 免费高清在线视频一区·| 99这里只有精品| 日韩视频免费直播| 中文字幕永久在线不卡| 老司机免费视频一区二区| 色综合中文字幕| 久久久99久久| 日本伊人午夜精品| 一本到一区二区三区| 久久综合九色欧美综合狠狠| 亚洲五月六月丁香激情| 丁香天五香天堂综合| 欧美一区2区视频在线观看| 亚洲美女精品一区| 国产精品一区二区黑丝 | 欧美日韩在线播放| 亚洲国产成人午夜在线一区| 免费观看在线综合| 欧洲色大大久久| 日韩伦理免费电影| 国产成人在线视频免费播放| 欧美一区二区免费观在线| 一区二区三区四区蜜桃| 成人毛片老司机大片| 久久久久久99久久久精品网站| 日韩成人一区二区| 欧美日韩另类国产亚洲欧美一级| 国产精品免费网站在线观看| 国产精品一区专区| 精品欧美黑人一区二区三区| 日韩和的一区二区| 欧美日韩亚洲不卡| 一区二区三区在线不卡| 91碰在线视频| 中文字幕一区二区三| 粉嫩13p一区二区三区| 国产欧美一区二区在线观看| 国产精品一区在线观看乱码| 久久久三级国产网站| 极品少妇一区二区| www国产成人| 韩国av一区二区三区在线观看| 欧美成人伊人久久综合网| 免费人成黄页网站在线一区二区| 欧美另类一区二区三区| 天天操天天干天天综合网| 欧美二区在线观看| 秋霞影院一区二区| 日韩三级视频在线观看| 久久国产精品色婷婷| 精品国产91亚洲一区二区三区婷婷 | 色婷婷激情一区二区三区| 亚洲欧洲精品一区二区三区| 99re66热这里只有精品3直播| 国产精品国产精品国产专区不蜜| hitomi一区二区三区精品| 日韩伦理av电影| 91成人看片片| 日韩精品乱码av一区二区| 91精品国产福利| 久久se这里有精品| 国产欧美一区二区三区沐欲| 成人综合婷婷国产精品久久| 中文字幕人成不卡一区| 在线影视一区二区三区| 天天综合天天做天天综合| 日韩免费看的电影| 国产成人精品影院| 亚洲欧美欧美一区二区三区| 欧美日韩三级在线| 另类调教123区 | 精品福利视频一区二区三区| 国产盗摄一区二区三区| 亚洲视频小说图片| 欧美日本一区二区三区四区| 久久99九九99精品| 国产精品麻豆久久久| 欧美日韩一区二区三区高清| 激情五月播播久久久精品| 国产精品系列在线| 欧美日韩亚洲另类| 国产酒店精品激情| 亚洲免费av观看| 日韩写真欧美这视频| 丁香五精品蜜臀久久久久99网站| 一区二区三区中文在线| 精品国产一区二区三区四区四 | 久久久久久久久蜜桃| 91日韩在线专区| 麻豆精品精品国产自在97香蕉| 中文乱码免费一区二区| 在线播放91灌醉迷j高跟美女| 国产九色精品成人porny | 国产日产亚洲精品系列| 色中色一区二区| 极品少妇xxxx偷拍精品少妇| 亚洲欧美一区二区三区孕妇| 日韩一区二区免费视频| 91色在线porny| 精品系列免费在线观看| 尤物在线观看一区| 久久女同性恋中文字幕| 欧美视频在线一区| 成人综合婷婷国产精品久久| 丝袜美腿亚洲一区二区图片| 国产精品久久一级| 欧美刺激午夜性久久久久久久| 日本韩国欧美一区二区三区| 国产成人自拍网| 日韩精品电影在线| 亚洲蜜臀av乱码久久精品|