I have a login custom server control that I want to be able to reuse any time I need to write a login page. Everything works fine except when I try to use a COM+ component to encrypt the password. I am compiling the control with the command line compiler. I get an error on the following line:
dim encPWD as new encrypt.encryptClass()
saying that encrypt.encryptClass is not defined.
I have 2 questions:
1)Is there a way to compile the server control in vs.net? When I compile the project that includes the class, I only get the project dll, and not the class dll.
2)If I still have to compile by the command line, Do I need to include a reference to the encrypt.encryptClass.dll?
Any help would be greatly appreciated!
-drew
dim encPWD as new encrypt.encryptClass()
saying that encrypt.encryptClass is not defined.
I have 2 questions:
1)Is there a way to compile the server control in vs.net? When I compile the project that includes the class, I only get the project dll, and not the class dll.
2)If I still have to compile by the command line, Do I need to include a reference to the encrypt.encryptClass.dll?
Any help would be greatly appreciated!
-drew