If you cannot create a DLL, then you cannot test your ASP pages.

However, you can still test the logic of your code.  It will be necessary to create VB forms that duplicates each HTML form.  The Form_Load event would do any intial population of the form.  A CommandButton would be used to the same as the HTML buttons.

The two lines of code I would need to use my class in a VB form are:
[
][
]
'In the General Declarations section
Private objAddresses As CIS237.Addresses

'In the procedure/function that uses it
Set objAddresses = New CIS237.Addresses
[
][
] I will be looking for active Discussion on how to accomplish this testing process.