tags:

views:

20

answers:

1

i have an exe file that does some pdf processing. i would like to call this exe within an asp page and i want the asp page to wait until the exe has completed processing. any solution?

thanks -Vivek

+1  A: 
Set WshShell = WScript.CreateObject("WScript.Shell")
intReturn = WshShell.Run(Server.MapPath("PathToMyApp.exe"), 1, TRUE)
RedFilter