I've been doing a fair amount of work calling VFP components in traditional ASP web applications. One thing I keep running up against is the need to pass the ASP components (Request, Response, and Session) as parameters to my VFP components. Passing the parameters is not a problem. The problem is testing the new methods before having to rebuild my DLL and load it into the server (IIS) environment. That is REALLY cumbersome. Furthermore, if something goes wrong, I can't use the VFP debugger to see what is going on.
Currently, I am working on generic routines to load form data into a custom container, and to take the data from that custom container and make it available to an HTML form. But I'm using VFP7--which doesn't fully support the "collection" object. So, I have no way to test my routines on the Request.Form collection. I've looked into creating my own custom "collection" component to mimic the ASP form collection, but the results will not work the same way (or use the same syntax).
Has anyone out there worked out a good way to test these ASP components in VFP? Does anyone know of a way to create this kind of collection so I can, at least, mimic the ASP component for testing purposes?
Thanks in advance,
Ron
Currently, I am working on generic routines to load form data into a custom container, and to take the data from that custom container and make it available to an HTML form. But I'm using VFP7--which doesn't fully support the "collection" object. So, I have no way to test my routines on the Request.Form collection. I've looked into creating my own custom "collection" component to mimic the ASP form collection, but the results will not work the same way (or use the same syntax).
Has anyone out there worked out a good way to test these ASP components in VFP? Does anyone know of a way to create this kind of collection so I can, at least, mimic the ASP component for testing purposes?
Thanks in advance,
Ron