Sets or gets the method name in the ActiveX, located at the server, that is called by the ISAPI extension DLL, after it has previously called the method to process the file set in the property IsapiActiveXRunProc.
Syntax:
Remarks:
This property is relevant only if the following have been set:
If the method to process the file, specified in the IsapiActiveXRunProc property, has completed and has returned a value not equal to zero then this method will be called by the ISAPI DLL. If the method to process the file has not been specified, this method will still be called. The method MUST return a string and accept no parameter. The syntax is as follows:
- The HTTP transport method is used.
- The ISAPI extension DLL has been specified using the IsapiExtension property.
- The ActiveX component on the server has been specified using the IsapiActiveXProgID property.
<sResultFile> = <Object>.<MethodName>
Where:
- sResultFile is the full file path name of the file that contains the data to send back to the client. If no files are to be returned back then the method must return an empty string.
- Object is an interface in the component with the program ID specified in the IsapiActiveXProgID property.
- MethodName is the name of the method to be called by the ISAPI extension.
See Also