-
Using ASP with IIS
I've developed multiple working applications for use with IIS, and they work perfectly fine in the run-time environment. However, I don't know how to compile them and use them outside the VB run-time environment with IIS. Can anyone help me with creating a stand-alone compiled project?
Thanks in advance,
--Dan
-
your IIS application must be made into a DLL file. VB will automatically do it for you.
In VB
File -> Make ABC.DLL
This DLL has to be registered in the NT Server (Web Server) where IIS is running. Rest is similar to your development environment. Copy the contents (ASP,database etc) to the respective website folder.
-
Registering
Thanks for your help. However, I'm hung up on the register part. Is there a certain way I can go about registering the DLL with the server? I feel once I can do that, it'll solve my problems.
Thanks again,
--Dan
-
Use Package and Deployment Wizard to compile and distribute your IIS App. The setup program created by PDW will not only register the DLL but allow you to setup the applicaton in the proper Web Folder.