是不多,这里<html:标签和=<bean:write 标签不可嵌套用,可以这样
<logic:present name="countrylist">
   <html:select property="countryid" styleClass="INPUT">
      <logic:iterate id="ss" name="countrylist">
           <html:option value="${ss.countryid}"/>
                          ${ss.countryname}
           </html:option>       </logic:iterate>
    </html:select>
</logic:present>

解决方案 »

  1.   

    学习一下另:<html:option value="${ss.countryid}"/>多了个斜杠:)
      

  2.   

    请问:我想将value值设为资源文件里某个key值,应该怎么做?
      

  3.   

    struts标签,自身不可以嵌套的。但是 struts标签,却可以嵌套在其他的 html标签,或者 jsp标签中。你的问题就在这里!
      

  4.   

    TO:kingmove(好逑) 
    可以用<bean:message
      

  5.   

    TO:
    但是标签不能嵌套,又怎么用<bean:message>呢?