On Tue, Oct 01, 2002 at 09:33:25AM +0100, Ian Swainson wrote: [...] > URL pattern filter as ".*avault.com/developer/getarticle.asp?name=bsawyer1.*".
Try this: ".*avault.com/developer/getarticle.asp\?name=bsawyer1.*" If that doesn't work, try this: ".*avault.com/developer/getarticle.asp.name=bsawyer1.*" The ? is a regex metacharacter, it means the preceding character is optional. Since your URL contains a literal ?, it will not match. Hope this helps, Jason -- Jason Day jasonday at http://jasonday.home.att.net worldnet dot att dot net "Of course I'm paranoid, everyone is trying to kill me." -- Weyoun-6, Star Trek: Deep Space 9 _______________________________________________ plucker-list mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-list

