I have a set of web services written in classic asp. I want to convert them to asp.net, but this will be a long process. I want to convert a couple functions at a time, and use some sort of routing mechanism to select which version the requests go to (classic asp, or asp.net).
Changing the url used to access the web service and functions is out of the question.
The function to use is defined by a parameter in the querystring.
It seems I cannot use Server.Transfer to go from asp.net to asp or vice-versa.
Anyone have suggestions?