-
I am using Classes (<% Class CCategory ....asp code..... End Class %>) in my ASP pages. They work great and they allow me to take a more of an OO approach to my ASP code. I'm just wondering if there are any performance or technical issues anyone knows of when using them. Any info would be greatly appreciated.
-
Yes There is one...
You cannot assign a class as an Application variable or
a Session Variable
Take a look at this KB article :
Q246596
-
Thanks G. The article is great. I'm actually using the classes as include files. They are basically retrieving info and opening and closing the database. The session variables I'm using are on my asp pages so hopefully I can continue without much issue.
Take care
-
Interesting, I wasn't aware of ASP classes...
I would think that compiled COM dlls would perform better.
Josh
-
Yes, COM based dll's would work much better but a lot of service providers will not let you register them on their servers.
-
Yes, compiled COM dll's would work much better but a lot of service providers will not let you register them on their servers.