Could someone please post the VB code for this:
http://www.wrensoft.com/zoom/support/aspdotnet.html
Thanks much,
TLW
http://www.wrensoft.com/zoom/support/aspdotnet.html
Thanks much,
TLW
<% Dim WshShell, env Set WshShell = CreateObject("WScript.Shell") Set env = WshShell.Environment("Process") env.Item("REQUEST_METHOD") = "GET" env.Item("QUERY_STRING") = Request.QueryString set oExec = WshShell.Exec(Server.MapPath("search.cgi")) oExec.StdOut.ReadLine() ' skip the HTTP header line Response.Write(oExec.StdOut.ReadAll()) %>
Comment