Ok, I have installed the Microsoft Posting Acceptor add-on to my IIS 4 on an NT server and I have gotten it to work. However, the way it works is an HTML form submits the file name to a DLL, CPSPOST.DLL. That doesn't give me many options for doing anything with capturing the file name, putting it into a database, or customizing the .DLL's output screen. Is there a way to modify this DLL to do other things after processing the file upload? Right now it's pretty generic. Here is the form so you can see the action of it. Again, this works, but I want to be able to customize the processing of the file more.
<form enctype="multipart/form-data" name="filesubmitform" action="cpshost.dll?PUBLISH" method="POST">
<center><table>
<tr>
<td align="left">File to upload</td>
<td align="left"><input name="file" type="file" onmouseover="this.size="20"></td>
</tr>
<tr>
<td align="left">Destination URL</td>
<td align="left"><input name="TargetURL" value="/uploads" size="20">
<input type="Submit" onclick="tellcontents()" value="Upload..."></td>
</tr>
<table></center>
</form>
<form enctype="multipart/form-data" name="filesubmitform" action="cpshost.dll?PUBLISH" method="POST">
<center><table>
<tr>
<td align="left">File to upload</td>
<td align="left"><input name="file" type="file" onmouseover="this.size="20"></td>
</tr>
<tr>
<td align="left">Destination URL</td>
<td align="left"><input name="TargetURL" value="/uploads" size="20">
<input type="Submit" onclick="tellcontents()" value="Upload..."></td>
</tr>
<table></center>
</form>