• 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

html:form pointing to some outside url ?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it possible to use <html-form -tag to send the form to some outside URL?

For example:


At the moment the only workaround I have figured out is to use normal <form>-tags like this:



Anyway I would prefer to use struts-tags + formbean for this. Any ideas?

Thanks,
- Mike
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, there isn't a way to use an <html:form> tag to refer to an outside URI. Think about it: If the action attribute doesn't refer to an action path, how is Struts going to associate a form bean with it? Even if it could, a form bean can't be passed to an outside link anyway.

The only solution I'm aware of is to do what you're already doing: Use the standard HTML tags.
 
reply
    Bookmark Topic Watch Topic
  • New Topic