I am trying to update an old application that used asp. I have created a new asp.net page that allows users to pick options, and then redirects them to an asp page. The asp page needs to read the form object values from the asp.net page. I haven't been able to get this to work with anything I've tried. I have tried two methods of redirecting back to the asp page (response.redirect and server.transfer). Neither of those work.
Response.redirect opens the asp page, but the form object is not sent.
Server.Transfer creates an error since asp and asp.net do not use the same ISAPI extensions.
Does anyone know how to do this?
Response.redirect opens the asp page, but the form object is not sent.
Server.Transfer creates an error since asp and asp.net do not use the same ISAPI extensions.
Does anyone know how to do this?