CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2000
    Posts
    13

    Register the ASP component in IIS Server

    Hi,
    Can any body give sugession how to register the asp component which is designed in VB 6.0. This component is used for database interaction, database tranactions, maiintaing the sessions , verification of users and etc.
    I'm using the personal web server and IIS Server is existing in my machine. I am using the Visual InterDev for developing ASP Pages.
    Please send the suggestion ASAP.


  2. #2
    Join Date
    Jan 2000
    Location
    MO, USA
    Posts
    1,506

    Re: Register the ASP component in IIS Server

    All you have to do in order to call it from an ASP page is compile the dll, and then register it on the IIS machine. You can run regsvr32 to do this:
    1) place the file on the server.
    2) go to start / run
    3) type "regsvr32 " & and the path to the file.
    If you stored the file in the system32 directory, you only have to supply the filename, since regsvr32 also resides in that directory.
    4) hit <enter>
    you should receive a message box confirming that the dll was successfully registered.

    Good luck,
    John

    John Pirkey
    MCSD
    www.ShallowWaterSystems.com
    John Pirkey
    MCSD (VB6)
    http://www.stlvbug.org

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured