how to Dynamically Load .dll at runtime??????

  • Thread starter Thread starter NY Terry
  • Start date Start date
N

NY Terry

Dear all:
anyone could tell me how to load .dll at runtime? I'm
writing a class (a .dll file) for my .aspx web page. In this class I have to
load other .dll at runtime. The name of .dll would be stored in database and
I would get it then load it. Therefore, at the time I compile this .dll
file, I don't know which .dll I will load at runtime. Is it possible to do
it? As I know so far (I'm a newbie here ^^" ), late binding is available for
those .dll which names are known already.
 
Use the Assembly.Load() static method to load a .dll file at runtime. You
can then use reflection to access the classes...
 
Back
Top