HaveTrouble
Programmer
My current ASP is calling DLL (written in VB6) and return confirmation page after DLL finished processing. DLL will be sending email with information requested. Sometimes DLL is taking long time to process and I don't want user to wait forever. Is there a way for ASP to initiate and pass parameters to DLL, then display a confirmation page saying "your request is in process" and user can browse to another ASP if they wish ? DLL can send out email to user whenever it's done. Below is the DLL called that I currently have:
some ASP codes before the call....
Set obj= server.CreateObject ("myDLL.cls")
rc = obj.doThis (param1, param2, param3, param4)
Set obj= nothing
some ASP codes after the call....
some ASP codes before the call....
Set obj= server.CreateObject ("myDLL.cls")
rc = obj.doThis (param1, param2, param3, param4)
Set obj= nothing
some ASP codes after the call....