I've built a component in .Net and have managed to get it working in ASP with some success.

ASP is able to load the class and the DLL happily processes all the requests made by the ASP page. However, it has problems returning the results via properties or functions. For example some Integer properties return, others don't. Strings return nothing. I haven't tried Booleans or some of the other primitive data types.

All the properties are very simple, merely returning and/or setting the value with no processing going on.


I am aware that there are differences between VB/ASP primitives and .Net primitives. The randomness of an integer working has me confused, and I am unsure of the other data types.

Has anyone had any similar experiences?