• 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

How can I use hyper link when submit a form?

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, there:

As a newbie to "struts","struts tags", I have a question about using javascript in struts need your help:
I have a form, and for some reason, we want to replace submit button with hyper link like:
------------------------------------

---------------------------------------------
however, it seems not work in "struts", it gives me "page error" when I click "SUBMIT", however, it works fine when I use <html:submit /> instead.
So, my question is how can I use above hyperlink to replace html:submit tag in my struts application?

Thanks a lot in advance
David
 
David Chen
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, the code is like:
<a href="javascript ocument.myForm.submit()">SUBMIT</a>
 
David Chen
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I mean:
javascript ocument.myForm.submit()

Is there some post review before I post it?
 
David Chen
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<a href="javascript: document.myForm.submit()">SUBMIT</a>
 
reply
    Bookmark Topic Watch Topic
  • New Topic