views:

46

answers:

2

I'm trying to call a .NET component using interop from a classic ASP page (VBScript). If a .NET function returns a "System.String", is there a way for me to use that as a VBScript string? Is there something I need to do to convert it?

+1  A: 

You shouldn't need to convert it. System.String should be fine.

Mike C.
Thanks! Should have tried it first, I guess!
Brian Sullivan
+1  A: 

No, you don't need to convert it to anything special. Just returning a System.String will be fine

AdaTheDev
Thanks! Should have tried it first, I guess!
Brian Sullivan