Author: sschack | Posted on: 6/20/2005 1:09:32 PM | Views : 807

The sample ASP.NET/ASP site with the custom Http handler is available for download at:http://download.microsoft.com/download/9/C/D/9CD0A246-5F89-4854-B4B6-CAE0D3F386BE/WEB343.msiThe sample also depends on a hashing helper that signs and validates the header values.  That code is not in the MSI - but the sample code is instead shown below. You can create a project that outputs a DLL called "HashingHelper.dll".  For it to be callable from Classic ASP, you will need to run "gacutil -i" to install the assembly in the GAC and you will also need to use "regasm" to register the class in the assembly with COM.HashHelper.cs:using System;using Syst ...

Go to the complete details ...