Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ASP objects
Message
 
 
To
03/04/2000 03:39:55
Marco Beuk
Innovero Software Solutions
The Hague, Netherlands
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Miscellaneous
Thread ID:
00354200
Message ID:
00354208
Views:
18
>Does anyone know how to use the ASP build-in objects (like the Response, Request) within a fox dll? In VB it is simple to use them. CreateObject does not work.
>I wan't to create a dll in an ASP-page and let the dll handle the Request and Response.

You can pass the object's reference as parameters to the method.

From ASP:
myVFPdll = server.createobject(myProgID)
myVFPdll.somemethod Response, Request

In VFP method:
Parameters myResponse, myRequest
with myResponse
.write('Hello World')
endwith
Michael McLain
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform