modiffying the dll.config

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I'm somewhat new to .Net 2.0. I have a web app that uses assemblies (middle
tier). I added the reference to the assemblies and want to change a value in
one of the assemblies <assembly name>.dll.config file. It's a path entry.
So how do you do this? Can you simply modify it the value in a text editor
and that's it? I know that you can modify the web.config for asp.net apps,
but what about assemblies that you reference?

Thanks,
Phil
 
asp.net does not support dll.config files. you need to use the
ConfigurationManager api to load it.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top