Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there anyway to execute server side app with asp

Status
Not open for further replies.

BIGSHooTer

Programmer
Nov 3, 2001
3
CA
I want to run a program like winzip on the server with asp

This would enable my clients to select mutilple items for download and then download one file containing all the items....

can anyone help

PLEASE
 
I have done it with a free componet. ASPExec from or you can try wsh. Something like:

dim oWSH
Set oWSH = CreateObject("WScript.Shell")
oWSH.Run("C:\somefile.exe",1,true)
set oWSH = nothing

I have had better results with the component
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top