• 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

Oh no... i'm doomed...

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hey man, i need help just like michael...
well, you see i have a onClick function that would be the Javascript hook to call a java function... the problem is, as i have learned reading other problems here.
now my question is, how will you call a java function in a jsp in a input type button?
-=[vince]=-
 
Ranch Hand
Posts: 134
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you have only one button in yout form why don't you use input type "submit" and give action to your <form>tag.
<form name="" action="../../sth">
<input type=submit name="">.
If you have multiple buttons in the form you better use <img src="">tag.And give the path for the image that resembles your button.Is it ok?
 
reply
    Bookmark Topic Watch Topic
  • New Topic