Forum Moderators: mack

Message Too Old, No Replies

displaying jsp, one asp response page in same

         

gautham

3:54 am on Oct 10, 2003 (gmt 0)



hello,

my problem is as follows.

its just like search for a value which will give me the details related to that value.

i am taking the parameter from a jsp. it is passed to another server from where i will get the asp page as response.

i want that asp page get displayed in the same page with the first jsp page text box and submit button.

can u pleaz help me as early as possible.

txbakers

3:32 am on Oct 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Generally you can't mix jsp and asp pages on the same server.

One runs in an IIS application server, the other needs to run in something like Tomcat to produce servlets.

garann

8:07 pm on Oct 13, 2003 (gmt 0)

10+ Year Member



Since the page will get processed on the other (ASP) server, I'd think you could just append the ASP-generated page to your JSP, using an iframe or something. By the time your server sees it, you should be dealing with the HTML the ASP builds, not the VBScript that produced it. Your JSP should never notice the difference.