• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

one more question about html:select and html:option tag

 
Ranch Hand
Posts: 131
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
if u have an sample jsp page and copy the following 2 tags u will see
them they llok different on the output page,
so if i have to make the struts tag look like the html tag what should
i do
<html:select property="system" size="1" multiple="false">
<html ption value="148.168.77.12"
>AS400B</html ption>
<html ption value="148.168.77.16"
>AS400E</html ption>
</html:select>
<select name="system">
<option value="148.168.77.12"
selected>AS400B</option>
<option value="148.168.77.16" >AS400E</option>
<option value="148.168.113.21" >Disaster</option>
</select>
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic