Asp from Asp.Net

A

acko bogicevic

Hi
How can i run asp application from asp.net?
I have this situation.
Two row frames on the page. Toolbar and center.
On the first frame(Frame1) i have a few links.
Every link's target property is center(Frame2).
Page is created in asp.net, but two links must open pages
in frame2 that are created in asp and belong to other web application.
Also, i have to send parrameters to asp pages.
Thanks
 
C

Chris Jackson

If you are using frames, all you have to do is set the src attribute on the
frame to the proper URL. Note, however, that these two processes (the ASP
handler and the ASP.NET handler) are going to be blissfully unaware of each
other, so if you have to pass parameters, you will need to do so using a
querystring or other such mechanisms. In short, your client can call
whatever mixture of pages it wants using whatever handlers it wants, but
each server application is going to be unaware of what is happening in the
other server application.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top