DLL Issue With Classic Asp

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default DLL Issue With Classic Asp

    Hi everyone,

    Not sure if this is the right newsgroup for this, but I think it is.

    I've been having trouble finding any good info on the following
    process:

    Create a DLL in .NET (using C# or VB)
    Install the DLL to my asp server
    Access The DLL From my asp page. (note: it's asp, NOT asp .net)

    I've tried w/o success to get a hello world type dll going. (ASP Error
    was that it failed to create the object because it couldn't be
    found ...)

    Just wondering if anyone can link me to a good tutorial (would love t
    osee a step by step tutorial if any exist), or shed some insight on
    the issue?

    Thanks!

    George Thompson Guest

  2. Similar Questions and Discussions

    1. .NET COM in Classic ASP
      I have created a simple .NET COM class. I have used regasm dllname.dll /tlb: dllname.tlb /codebase to register it on another server - the files...
    2. MAC OS X NOT BETTER THAN CLASSIC!!
      OK, I have been using Mac OS X since version 10.0. Now, as a Mac user for more than 13 years, a UNIX/Linux user for more than 8 years, and as IT...
    3. .NET WebServices and classic ASP
      What you can do is: - use Soap Toolkit to create a Vb component that calls the webservice - create a .Net assembly that wraps the webservice proxy....
    4. OT: Mac issue - deleting Classic....
      Getting closer to the day when it's goodbye to Classic for good. But have heard there are issue when deleting the Classic system folder. I have...
    5. Use .NET class from within classic ASP
      You can put a COM wrapper around your .NET code and use it from old ASP. However, like all things COM, it will need to be registered on the server...
  3. #2

    Default Re: DLL Issue With Classic Asp


    "George Thompson" <nathaniel.williams@gmail.com> wrote in message
    news:1172612219.410024.181500@a75g2000cwd.googlegr oups.com...
    > Hi everyone,
    >
    > Not sure if this is the right newsgroup for this, but I think it is.
    >
    > I've been having trouble finding any good info on the following
    > process:
    >
    > Create a DLL in .NET (using C# or VB)
    > Install the DLL to my asp server
    > Access The DLL From my asp page. (note: it's asp, NOT asp .net)
    >
    > I've tried w/o success to get a hello world type dll going. (ASP Error
    > was that it failed to create the object because it couldn't be
    > found ...)
    >
    > Just wondering if anyone can link me to a good tutorial (would love t
    > osee a step by step tutorial if any exist), or shed some insight on
    > the issue?
    >
    Did you create a COM interop wrapper for the .NET assembly? Script in ASP
    cannot access .NET assemblies directly.


    Anthony Jones Guest

  4. #3

    Default Re: DLL Issue With Classic Asp

    This is new territory for me...not sure of what needed to be done, but
    here's what i did do:

    I followed some directions I got from a few sites.

    i made a new class library in c#.
    i made a little hello world class
    take the dll created when building and install it to the server
    ?????????
    Call dll from asp

    need help w/ the ?????????? part. Also, are there any special
    settings required to be set in visualStudio on build?

    Not familiar with the process for doing this:
    "Create a COM interop wrapper for the .NET assembly"

    Does anyone have a link to some info or ideally a tutorial?

    Thanks!



    1st step was to Build a Class Library
    On Feb 27, 5:35 pm, "Anthony Jones" <A...@yadayadayada.com> wrote:
    > "George Thompson" <nathaniel.willi...@gmail.com> wrote in message
    >
    > news:1172612219.410024.181500@a75g2000cwd.googlegr oups.com...
    >
    >
    >
    >
    >
    > > Hi everyone,
    >
    > > Not sure if this is the right newsgroup for this, but I think it is.
    >
    > > I've been having trouble finding any good info on the following
    > > process:
    >
    > > Create a DLL in .NET (using C# or VB)
    > > Install the DLL to my asp server
    > > Access The DLL From my asp page. (note: it's asp, NOT asp .net)
    >
    > > I've tried w/o success to get a hello world type dll going. (ASP Error
    > > was that it failed to create the object because it couldn't be
    > > found ...)
    >
    > > Just wondering if anyone can link me to a good tutorial (would love t
    > > osee a step by step tutorial if any exist), or shed some insight on
    > > the issue?
    >
    > Did you create a COM interop wrapper for the .NET assembly? Script in ASP
    > cannot access .NET assemblies directly.- Hide quoted text -
    >
    > - Show quoted text -

    George Thompson Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139