• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

How to submit from ASP to Servlet

 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi...
I am working on a project where I have to invoke a JSP page from a ASP page , Any suggesstion how to submit an ASP to a servlet

Thanks in advance
Tuhin
 
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are asking two different things: invoke a JSP from an ASP, or invoke a servlet from an ASP. Which is it?
 
Tuhin Ghosh
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry for the conf.

Its like
ASP >> [Servlet >> JSP]

thanks
tuhin
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A servlet is represented as an URL, as far as the HTML form that is being submitted is concerned. It doesn't make a difference which technology was used to generate the HTML form in the first place.
 
Bartender
Posts: 2292
3
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ulf Dittmer:
A servlet is represented as an URL, as far as the HTML form that is being submitted is concerned. It doesn't make a difference which technology was used to generate the HTML form in the first place.



Exactly!!! No problem sending .pl, .nsf, .exe, .asp, .aspx, .jsp, .anything to any technology. What will be sent to the server is the user's input anyway. In your case, just put the servlet's address in the action attribute of the form of the ASP page.
[ December 30, 2007: Message edited by: Roberto Perillo ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic