On a Windows desktop I want to right click on a file, choose a custom menu item in the popup list, which when clicked on makes an HTTP request to call an ASP page on a Windows servers. This is all inside a corporate network.
I'm thinking I will right a VB Script to perform the http request so that I can grab the fully qualified file name and pass it as a parameter.
A long time ago I did CGI based web programming using html forms with a submit button to specify the href and the form fields were sent across with the http request as name value pairs.
How can I do a similar thing in the VB Script except call an ASP page (or method) to pass the file name to the ASP page?
In the ASP page what method would the request go to? In that method I will use the file name to do some processing.