Okay, this is the problem:
I am getting this error message when I am trying to run the following script
Dim rg
Dim match
Set rg = New RegExp
rg.Pattern = "Mod Read Access"
rg.Global = True
roles = Session("Roles")
Set match = rg.Test(roles)
it chokes at the rg.Test(roles) point.
I suspect that I may be doing something wrong since I don't normally program in asp classic. What exactly am I doing wrong?