Your best bet is to write a script in VBScript that is authored to be run through Windows Script Host (WSH) as a .wsf file.
Depending on your OS, WSH is probably already installed.
For the scheduling, you should create a .bat file that runs cscript.exe using the .wsf file as input. (Cscript.exe...
The other prob you've probably run into is that you're checking for
<%if request.form("topic") = "" or request.form("topic") = nothing then %>
The 'nothing' in this statement is an object reference.
If you change the above to:
<%if request.form("topic")...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.